Python learning
27.3K subscribers
209 photos
8 videos
75 files
118 links
Learn pythonπŸ”₯
Quality content πŸ˜‰
Get Python Course 😁
Download Telegram
python pattern notes.pdf
1.6 MB
python pattern notes.pdf
Python Basics to Advanced NotesπŸ“š (2).pdf
8.7 MB
Complete Python Handwritten Notes πŸ“βœ…
--- Do you like me Source Code ---


import tkinter as tk
import random

def show_popup():
    popup = tk.Toplevel(root)
    popup.title("Popup")
    label = tk.Label(popup, text="Thanks for Accepting")
    label.pack(padx=20, pady=20)

def move_button(event):
    x = random.randint(0, 350)
    y = random.randint(0, 350)
    no_button.place(x=x, y=y)

root = tk.Tk()
root.title("instagram: @pythoncodess")
root.geometry("400x400")

question_label = tk.Label(root, text="Do you like me?")
question_label.pack(pady=20)

yes_button = tk.Button(root, text="Yes", command=show_popup)
yes_button.pack()

no_button = tk.Button(root, text="No")
no_button.pack()

no_button.bind("<Enter>", move_button)

root.mainloop()
Data Science Roadmap πŸš€

Day 1-7: Excel Fundamentals 

Day 8-14: SQL Basics & Queries 

Day 15-25: Python for Data Analysis 

Day 26-35: Data Cleaning & EDA

Day 36-45: Tableau & Power BI

Day 46-60: Machine Learning Basics 
Don't forget to React ❀️
SQL ROADMAP πŸš€

Day 1-10 :- Basics Of SQL

Day 11-20 :- SQL Queries And Filtering

Day 21-30 :- Joins and Subqueries

Day 31-40 :- Aggregate functions and Grouping

Day 41-50 :- Database Design and Normalization

Day 51-60 :-Advance SQL Queries

Day 61-70 :- Stored Procedures and Functions

Day 71-80 :- Indexing and Query Optimization

Day 81-90 :- Capstone Projects


For more Informative contents. Don't Forget To React ❀️
AI & ML DIGITAL NOTES.pdf
3.4 MB
AI & ML DIGITAL NOTES πŸ“

REACT ❀️ For More ✌️
Roles & Responsibilities of Fullstack Developer πŸš€πŸ”₯


1) Understand Requirements of Project.

2) Analyze requirements.

3) Design / Planning.

4) Database Design.

5) Development (Backend development).

6) Unit Testing.

7) Code Review.

8) Code Integration (Git Hub).

9) Frontend Development.

10) Frontend + Backend Integration

11) Deployment.

12) Support / Maintenence.



For More Informative contents.
Don't Forget To React ❀️
For More Informative contents.
Don't Forget To React ❀️
Free Google Course With Certificate πŸ§‘β€πŸŽ“πŸŒπŸ”°
https://inprogrammer.com/500-free-google-certification-courses/
Please open Telegram to view this post
VIEW IN TELEGRAM
Bank management system using python complete source code https://inprogrammer.com/bank-management-sytem-using-python-complete-code/
Full-Stack Web Developer RoadmapπŸš€πŸ”₯

βœ… Day 1-25: HTML, CSS, JS.
βœ… Day 26-40: React JS.
βœ… Day 41-55: Node JS & Express.
βœ… Day 56-70: MongoDB.
βœ… Day 71-90: Build Projects.


For More Informative Contents.
Don't Forget To React
❀️
The <input> tag in HTML is used to collect user input in web forms. Here are some key points about it:

Versatile Usage – Supports multiple input types like text, password, number, email, date, etc.

User Interaction – Enables users to enter or select data for forms.

Customizable – Can include attributes like placeholder, required, disabled, and readonly to control behavior.

Form Submission – Works with the <form> tag to send user data to a server.

Validation Support – Helps validate input using attributes like maxlength, pattern, min, and max.

Enhanced UX – Improves usability with features like auto-focus, default values, and autocomplete.


For More Informative Contents.
Don't Forget To React
❀️
Data Analyst Interview Questions.pdf
2.8 MB
Data Analyst Notes πŸ“
Don't Forget To React ❀️
Git Commands

πŸ›  git init – Initialize a new Git repository
πŸ“₯ git clone <repo> – Clone a repository
πŸ“Š git status – Check the status of your repository
βž• git add <file> – Add a file to the staging area
πŸ“ git commit -m "message" – Commit changes with a message
πŸš€ git push – Push changes to a remote repository
⬇️ git pull – Fetch and merge changes from a remote repository


Branching

πŸ“Œ git branch – List all branches
🌱 git branch <name> – Create a new branch
πŸ”„ git checkout <branch> – Switch to a branch
πŸ”— git merge <branch> – Merge a branch into the current branch
⚑️ git rebase <branch> – Apply commits on top of another branch


Undo & Fix Mistakes

βͺ git reset --soft HEAD~1 – Undo the last commit but keep changes
❌ git reset --hard HEAD~1 – Undo the last commit and discard changes
πŸ”„ git revert <commit> – Create a new commit that undoes a specific commit


Logs & History

πŸ“– git log – Show commit history
🌐 git log --oneline --graph --all – View commit history in a simple graph


Stashing

πŸ“₯ git stash – Save changes without committing
🎭 git stash pop – Apply stashed changes and remove them from stash


Remote & Collaboration

🌍 git remote -v – View remote repositories
πŸ“‘ git fetch – Fetch changes without merging
πŸ•΅οΈ git diff – Compare changes


Don’t forget to react ❀️ if you’d like to see more content like this!
Stanford’s Machine Learning - by Andrew Ng

A complete lecture notes of 227 pages. Available Free.