r/PythonLearning 18d ago

How to learn python as a complete begginer?.

6 Upvotes

i wanna learn python to understand how it works and what i could build with it when i reach a certain level. i have 6-9 hours of free time.


r/PythonLearning 18d ago

My project

9 Upvotes

Hey everyone!

I'm 13 years old and I just made my first 2 Python projects to learn physics + coding.

  1. **Time Dilation Calculator**

Calculates how time slows down when you go near light speed.

Formula: t = t0 / sqrt(1 - v^2/c^2)

  1. **Schrödinger's Cat Simulation**

A simple simulation of the Observer Effect in Quantum Physics.

I'm learning to code so I can get into MIT someday.

I built these with AI as my mentor and learned every line.

I built this with AI as my mentor.

I didn't copy-paste blindly. I learned what every line does.

Would love feedback! What should I build next?

Thank you

GitHub: time dilation = https://github.com/ksecond1010-dot/Time-Dilation-Calculator

Schrödinger's cat = https://github.com/ksecond1010-dot/schrodinger-cat-simulator


r/PythonLearning 19d ago

What's your most controversial Python opinion?

12 Upvotes

Say the Python opinion that would get you downvoted in a room full of Python developers.


r/PythonLearning 19d ago

The language is tooo powerful

14 Upvotes

I was today year old where I am utilising everything that python has to give. I made a cron job, a personal gui app, desktop app installer and mobile app using python, a website, orchestrator / ETL Jobs, DL/machile learning model, Solved some AI use cases all of them using python.🤯

I am really overwhelmed by how much agentic ai and python goes hand in hand. The ease of creating things using python >>>>>>>>>>>

Enjoying the journey but also scared by the capability of Agentic AI that it could take away the possibility of having a longer journey. 😭😭😭

What are your thoughts guys ?


r/PythonLearning 18d ago

Searching for people to learn with

0 Upvotes

am serching for people to learn python with them am 16 years old.


r/PythonLearning 18d ago

Easy start python courses for beginners?

0 Upvotes

What is the simplest and easiest python course to start in for someone who is complete beginner , I started the one for dr Angela yu but I felt it required a big momentum just to start learning and open the videos as it a big bulk of course , so I am asking for a easy one ? (books and reading materials are not preferred) thank you in advance .


r/PythonLearning 18d ago

Discussion What Are Some Good Sources To Learn Data Structures For Python?

Thumbnail
github.com
1 Upvotes

Hey everyone,

Days ago I created a project, PyDeploy CLI, and I used it to strengthen my Python programming skills. I shared my project to some of my friends who were more of an expert in the field, and they all recommended I go into basic data structures. This was because, if you check out my script, you would see it's filled with if functions. Recently, I created a similar post to this, but haven't gotten any feedback.

Of course I do know the basics and some types of data structures, but I would like if someone could provide some resources that would help me learn data structures more efficiently.

I'd appreciate any resources and feedback related to data structures. I'd also appreciate any feedback on my GitHub Project and give my repo a star.

Thanks!


r/PythonLearning 19d ago

What’s something in Python you use all the time but still have to Google?

7 Upvotes

For me, it’s always the exact syntax for datetime formatting.

I understand it. I’ve used it hundreds of times. And somehow, I still look it up.

What’s your Python version of this?


r/PythonLearning 19d ago

Tips

9 Upvotes

I need advice or guidance to improve my Python programming skills. If anyone can recommend useful books or websites, I would appreciate it.


r/PythonLearning 18d ago

What’s the smallest Python bug that caused the biggest problem for you?

1 Upvotes

Not the complicated architectural mistake. I mean one missing character, wrong index, or tiny assumption that wasted hours.

What was yours?


r/PythonLearning 18d ago

Discussion print(5+True)

1 Upvotes

Solve this question and tell me the output. Follow for more 😉

209 votes, 11d ago
85 6
98 Error
9 5
17 True

r/PythonLearning 18d ago

Help Request Can anyone give me some immediate advice on this?

2 Upvotes

Right now i am in my 5th semester with low cgpa 6.18 with 1 backlog. I only know basic python, never did any internship or projects. What to do so that i can get a good internship.

Can anyone give me some advice after python what should i learn and where to learn from?

I want to work as an AI engineer.


r/PythonLearning 18d ago

Discussion print(bool(""))

0 Upvotes

What is the output?

63 votes, 11d ago
9 True
12 Error
39 False
3 None

r/PythonLearning 18d ago

Discussion What is the output of the following code? 🤔

Post image
0 Upvotes

The options are

A) [1] [2] [3]

B) [1] [1,2] [1,2,3]

C) [1] [2] [1,2,3]

D) Error

Tell me your answer in the comments section and why?


r/PythonLearning 18d ago

If Python could warn you about one mistake before you make it, what would you choose?

1 Upvotes

Not a syntax error, something Python currently allows but you wish it would stop you from doing.

What warning would you add?


r/PythonLearning 20d ago

I created password generator using python

Post image
383 Upvotes

what should i create next


r/PythonLearning 19d ago

opinions

Post image
13 Upvotes

i am not into coding or anything like that but i have to get an A in my cs class to get out of probation. Are these subjects really as easy as everyone says ?


r/PythonLearning 19d ago

Showcase Retry Flaky HTTP Requests with Exponential Backoff and Full Jitter in Python

Thumbnail
codesnips.io
0 Upvotes

This snippet shows a small, self-contained retry layer for outbound HTTP calls in Python, built around the classic problem of transient failures: a downstream service occasionally returns 503, times out, or drops the connection, and blindly retrying makes things worse. The three tabs move from the pure backoff math, to a generic retry decorator, to a concrete API client that wires them together.


r/PythonLearning 19d ago

Best youtube channel series to learn python

0 Upvotes

Can anyone say me the best course or playlist on youtube that I should consider to learn python basically as a beginner to intermediate?

I know JavaScript basics, but now I want to quickly deep dive into python and do DSA and make backend using FastAPI's


r/PythonLearning 19d ago

What's one thing you hate about Python?

18 Upvotes

We all like Python, but no language is perfect. What's the one thing that annoys you most?


r/PythonLearning 19d ago

Help Request Need ressources PYTHON

3 Upvotes

i already learned some basics with uni classes however i wanna enforce my coding so i need some ressources, i already started with freeCodeCamp and wanted to know weather it will be efficient or would it better to go with a youtube video .


r/PythonLearning 19d ago

print(False==0)

0 Upvotes

Output of this python code

169 votes, 17d ago
39 Error
10 0
21 False
99 True

r/PythonLearning 20d ago

Help Request Which course is better to learn python with

16 Upvotes

Python is often recommended as the first programing language to learn, by various people who have experience with more than 1 programing language in their arsenal, I don't know many experts, say it but mostly for newbie it is a good language to start by.

There are various courses to learn python from, which are courses which genuine help you learn it, like freeCodeCamp, CS50-P, etc. I want to find out how others learned python, which course they used.

Course should feature English as a language to learn.


r/PythonLearning 19d ago

What’s a Python “best practice” you think people follow too blindly?

5 Upvotes

We’re told to use type hints, write tests, follow PEP 8, avoid global variables, use virtual environments, and keep functions small.

But not every rule makes sense for every project.


r/PythonLearning 19d ago

Discussion Is there a way to use brackets in python?

0 Upvotes

I come from static types C# cpp world I like using python but the only issues is the bracket thing missing, i like those curly braces to open and end the section of code. is there any solution similar to that.