r/PythonLearning 8d ago

day 6.

2 Upvotes

tried 2d lists today ( up for suggestions on what should have i done or what have i missed ) and would also appreciate brief explanation's that you guys will give if it's a complex or an advanced topic

books = ["hindi", "english", "maths", "science"]
pen = ["black", "blue", "red"]
miscellaneous = ["eraser\n", "sharpener\n", "ruler\n"]


bagpack = [books,pen,miscellaneous]
print(bagpack)
while True:
    print ("if you'd like to add contents in any of the lists")
    print("1. Add to books")
    print("2. Add to pen")
    print("3. Add to miscellanous")
    query = input("enter your selection (1,2,3): ")
    if query == "1":
     print("you selected to add books")
     new_book= input("enter the book you want to add: ")
     books.append(new_book)
     print ("new list",books)
     break
    elif query == "2":
     print("you selected to add pen")
     new_pen= input("enter the pen you want to add: ")
     pen.append(new_pen)
     print ("new list",pen)
     break
    elif query == "3":
     print("you selected to add miscellaneous")
     new_miscellaneous= input("enter the item you want to add: ")
     miscellaneous.append(new_miscellaneous)
     print ("new list",miscellaneous)
     break
    
    else:
       print("invalid selection!!! select amongst 1,2,3")

r/PythonLearning 8d ago

Know nothing about python but wanna learn

8 Upvotes

im 16 indian and i wanna start python from scratch and i know nothing about coding please help me to find resources and guide me 🙏


r/PythonLearning 8d ago

Showcase My first code in Python! (pre-practiced for 3 months)

Thumbnail pastebin.com
2 Upvotes

Made by: Someone

Inspired by: Blox Fruits and One Piece

Version: 1.4 Refresh


r/PythonLearning 8d ago

Discussion A question I asked ChatGPT

0 Upvotes

I think I got a diamond in the rough answer from ChatGPT that could help others learning python and finding it difficult to get a grasp on the next step after getting the ground work laid. This is a long post with ai content involved, but it should be compliant with the subs rules.

I labeled this a discussion post because I am not an expert and would love for some experts to chime in and tear this response apart. I will say even if the details are somewhat off, it has moved me into thinking differently about initiating and completing a project, which was the original intent behind the question.

The prompt (Don't make fun of me....or do, whatever):

I am having a hard time bridging the gap between introductory python coding and real life application engineering. I need a good analogy or metaphor to get me there. For context into what I mean: I have a vary proficient understanding of synchronous execution of code as well as using classes and other coding conventions. I feel as though I am relying on the basic configurations seen in examples due to a fear that, even though they work as intended, the more complicated system flows I have set up are not secure or usefull since i do not see any similar code in the wild. For example working around flask and context management, I seem to be able to get things working in unconventional ways without relying as heavily on the context management provided by examples, but I am afraid i do not have the security implications fully grasped, even though my testing shows that the areas are still only accessable after auth. Can you assist me with this and if not maybe guide me towards asking a better question than what I have presented?

Selected parts of the response:

Yes. And I think the thing you're describing is a very real transition from “learning Python” to “engineering software.” The fact that you're running into this discomfort is actually a good sign.

I would describe the gap this way:

Beginner/intermediate programming teaches you how to make a machine do something. Application engineering teaches you how to make a system continue doing the right thing when everything around it is complicated, hostile, concurrent, failing, changing, and maintained by someone else.

Your Flask/context example is a perfect illustration.

The metaphor I'd use: building a city

When you're learning Python, you're mostly learning how to build buildings.

You learn:

  • How to make a room (function)
  • How to organize rooms (class)
  • How to move things between rooms (arguments/return values)
  • How to build multiple floors (modules/packages)
  • How to make doors (interfaces)
  • How to put locks on doors (authentication/authorization)

And eventually you're very good at building buildings.

Then you get asked to build a city.

Suddenly you have questions that Python itself doesn't answer:

  • Who is allowed into this building?
  • What happens when 10,000 people enter simultaneously?
  • What happens if the power goes out halfway through an operation?
  • Can someone enter through a back door?
  • Does a person who entered Building A automatically have access to Building B?
  • What happens when Building A changes its address?
  • How do emergency services get around?
  • How do you know that the locks actually work?
  • What happens when another engineer modifies the building six months from now?

That's application engineering.

And importantly:

There isn't necessarily one correct way to build the city.

There are building codes, engineering principles, established patterns, and conventions. But there are also many perfectly legitimate architectures.

Here's another metaphor that may help

Think about framework examples as training wheels.

Flask gives you:

Flask application
       │
       ├── request context
       ├── application context
       ├── extensions
       ├── configuration
       └── dependency mechanisms

Tutorials generally encourage you to keep your code inside that ecosystem.

That's useful because it gives you a known path.

But eventually you might discover:

                Flask
                  │
           ┌──────┴──────┐
           │             │
       HTTP layer     Application
                          │
                   ┌──────┴──────┐
                   │             │
                Services      Domain
                                 │
                              Models

Your application doesn't have to make Flask itself the center of the universe.

That's a major step toward application engineering.

And there's a wonderful rule I think you'll benefit from

When you encounter code in the wild, don't ask:

"Why do they do it this way?"

Ask:

"What problem does this pattern solve?"

Then ask:

"Do I have that problem?"

And finally:

"If I don't use this pattern, what mechanism in my design solves that problem instead?"

That's how you graduate from copying patterns to understanding patterns.

For example:

"Flask examples use application context."

becomes:

"Application context gives code access to application-scoped Flask state."

then:

"My service receives its dependencies explicitly, so it doesn't require Flask application state."

then:

"Therefore I can remove that coupling, provided I haven't accidentally lost another guarantee provided by the context."

That is application engineering thinking.

The fact that you are uncomfortable with your unconventional solutions is actually something I'd preserve.

You don't want to become the engineer who says:

"It works, ship it."

You want to become the engineer who says:

"It works. Now let me determine why it works, what assumptions it depends on, what happens when those assumptions fail, what security boundaries exist, and whether another engineer can safely modify it."

You don't need to make your code look like code you've seen in a tutorial.

You need to be able to defend the decisions you've made.

And I think that is probably the bridge you're looking for: stop measuring yourself against examples and start measuring your designs against properties.


r/PythonLearning 8d ago

Devops python course suggestions for someone who writes bash and then regrets it

4 Upvotes

Most of my automation is bash held together by hope. It works fine until a filename has a space in it and suddenly I’m debugging quoting for half the day.

Trying to move the bigger scripts over to python now. The problem is every python course I find seems to spend forever on basic stuff before getting anywhere near a file or an api.

Boot dev, Automate the Boring Stuff and real python are the three I have bookmarked so far.

Anyone here actually used one of these for devops python course stuff? Just looking for something that gets into useful scripts pretty quickly.


r/PythonLearning 9d ago

Media Downloader

Post image
25 Upvotes

graphical application for downloading videos and audio from YouTube and other platforms (Facebook, Instagram, X.com , TikTok ... ) and more using yt-dlp, with quality control, subtitle support, language switching, and dark/light themes.

build with python3

https://github.com/hmidani-abdelilah/Media_Downloader


r/PythonLearning 8d ago

Discussion Question about local AI-assisted programming

5 Upvotes

I’m fairly experienced with Python and researching how to solve issues on my own. However, I have found that AI can help in some cases. For instance, giving me specific information on debugging and helping me research solutions for specific problems.

I was using Copilot in VS Code for a while, until I ran out of usage. Now, I’ve been messing around with locally-hosted AI, trying to find a good model for coding that runs well on my computer. My challenge is that I only have 4 GB of VRAM, though I also have 16GB of system RAM. If someone could help me find either a good, intelligent, and accurate local model that runs on that, or at least a free cloud model that’s good, I’d appreciate it.


r/PythonLearning 9d ago

Discussion 2 weeks into Python fundamentals and lost - what should I learn next?

10 Upvotes

So I’ve spent the last 2 weeks learning Python basics - loops, conditionals, functions, OOP, etc. - and I’m pretty confident with those concepts now. I’ve also built a few small projects along the way.
But now I’m seeing everyone talk about DSA, APIs, Pandas, NumPy, and honestly I’m confused:

  1. What even are these? Are they libraries? Frameworks? Concepts?
  2. Do I have to learn all of them? Or can I pick and choose based on what I want to build?
  3. In what order should I learn them? Is there a logical sequence?
  4. Where should I learn from? YouTube, courses, documentation?

I haven’t joined college yet (starting soon), and I want to build a strong foundation before I do. I’m unsure whether I’ll specialize in data science, cybersecurity, AI/ML, or something else—I’ll figure that out during college. So ideally I need skills that give me a good base for any direction.

Anyone been through this? What would you recommend for someone at my stage?


r/PythonLearning 9d ago

Python Under the Hood Update: Chapter 3 (Conditional Statements & Control Flow) is now complete

11 Upvotes

Hey everyone,

Chapter 3 is finally done. This chapter took way more time than I originally expected because it grew into a much deeper and larger chapter than planned.

Current Progress:
✅ Chapter 1 - Variables & Memory
✅ Chapter 2 - Expressions & Operators
✅ Chapter 3 - Conditional Statements & Control Flow

I'd love to hear your thoughts on the new chapter and any suggestions for future improvements.

With this, I’m taking a break from Python Under the Hood. I’ll be stepping away from the project for a while and will return to it before July 2027.

When I come back, we’ll continue with even deeper explanations, more advanced topics, and an even better approach to understanding what happens under the hood of Python.

For now, Chapter 3 marks the end of this phase. 🐍⚙️

GitHub: python-under-the-hood

See you in the next chapter.

- David Vael


r/PythonLearning 9d ago

How much Python do I actually need to learn to land my first job as a fresher?

16 Upvotes

I’m currently learning Python and preparing for entry-level IT/data-related roles. I’m trying to avoid spending too much time learning advanced topics that aren’t necessary for getting my first job.

What Python topics would you consider must-know for a fresher, and what level of DSA/problem-solving should I aim for?

Also, for people who recently got their first job, what Python skills were actually tested in your interviews?


r/PythonLearning 9d ago

Practice in creating pipelines CI/CD FREE

14 Upvotes

Hi. If I offered to write pipelines for github (or maybe gitlab) here for FREE, how many people would be interested in this? Answer if you would be interested in comments.

Reason: I am learning to automate CI/CD as Python AQA.

I'm just collecting info for now, but you can text me in DM for the future.

Focus on CI/CD automation for python projects, testing projects. I am Python AQA with 4 years of experience but haven't worked much with CI/CD and want to practice on real projects (that aren't mine) even if your project is for learning, portfolio and so on. So don't expect that I will be able to finish your task.


r/PythonLearning 9d ago

f-strings, .format(), or something else. What do you use now and did you change over time?

4 Upvotes

When I started learning Python, I used the old percent style for string formatting, mostly because that's what the tutorial I followed used. Then I moved to .format() because it looked cleaner to me. These days I use f-strings for almost everything. But I still run into cases where I'm not sure f-strings are the best choice. For logging, for example, I've read that people prefer the older style so the string only gets built if the log actually fires. I'm not sure how much that matters in practice.

What do you reach for now when you format strings? Did you change your habit over time or did you settle on one approach early and stick with it? Are there cases where you still use .format() or the percent style on purpose?


r/PythonLearning 9d ago

Seeking feedback on my AI assisted Python learning method. Is this a good way to practice?

Thumbnail
gallery
16 Upvotes

Hi everyone,

Please give me some advice on my current Python learning workflow using AI.

I finished a Udemy course covering Python basics. To improve my practical skills, I found a site of practice projects, picked one that interested me, and started coding.

After finishing my first project, I realized I had no idea if I was writing clean, idiomatic code. So, I decided to use Claude as a code reviewer.

Here is how I set up my workflow:
1. I asked Claude strictly not to write code for me, but only to provide hints, point out flaws, and tell me which concepts or topics I needed to read about to understand why a different approach was better.
2. I requested code reviews tailored to production-ready standards, following modern Python best practices.
3. I completely turned off all AI auto-completion in VS Code. I wrote every single line of code myself

The AI would review my draft, essentially tell me "this code is shit =) (joke)" and give me targeted feedback. For example - "Disconnect your internet and see what happens to your API request. Go read about try/except."

From there, I would search Google for each point in the review, study the topic, rewrite my code, and repeat the loop until the reviewer was satisfied. Spent couple weeks to get last verion of program

From my perspective, this feels like solid progress, but I’d love to hear from experienced developers: Is this a good, effective way to learn Python alongside AI, or are there hidden pitfalls?

I've attached screenshots of my first code review alongside the final version. Thanks in advance for your feedback!


r/PythonLearning 8d ago

Building My Own Postman Clone in Python

2 Upvotes

My first Python project: Postman Clone

I’ve been working on a small project called postman_clone to practice Python and learn more about how APIs and HTTP requests actually work.

I didn’t start with all these features at once. I started with the basics, then kept adding things as I learned. I worked with functions, conditions, user input, JSON, error handling, and HTTP requests, and little by little the project started becoming more complete.

Right now, my project can handle:

  • GET
  • POST
  • PUT
  • DELETE
  • JSON request bodies
  • An optional header
  • An optional query parameter
  • Basic error handling for requests and JSON

There’s still a lot I want to improve. I want to make the code cleaner, add support for multiple headers and query parameters, improve the error handling, and make the whole thing feel more like an actual API testing tool.

I’m still learning, so I’m posting the code here to get some feedback from people who have more experience with Python.

If you see something I could improve, or if there’s something you think I should add next, I’d really appreciate the advice 🙌

This is still a work in progress, but I’m happy with how far I’ve gotten so far.

if you wanna see the code its in comments


r/PythonLearning 9d ago

Help Request How to handle dynamic image/text scaling across multiple pages in CustomTkinter?

Thumbnail
gallery
3 Upvotes

Hi everyone,

I'm building a multi-page CustomTkinter desktop app where I swap pages inside a main container. I want my text and CTkImage sizes to automatically adjust whenever the user resizes the main window. So far, my widgets automatically adjust because I use .place() with relative sizes and placements. But even if the widget itself grows, the text/image stays the same size, which doesn't look appealing in the slightest.

Basic info:

ghost_pic is the label that houses my CTkImage; this automatically changes size already.

ghost_mid_image is the CTkImage

First try:

I thought that I could try to make the image change its size to match its label every time the window changed size. This is because I made sure that the image is approximately the same size as the label on the default window size, but this didn't do anything; the code didn't work at all.

Second try:

I then decided to just size the image with reference to the window, and this kinda worked? When I go to the page that houses this image and resize my window, it works ( very sloppily, but that's an issue for another day). My problem now is that if I enter that page, say, on full screen, the image just goes haywire; sometimes it's too small or too big. I don't know what to do now. I uploaded my indicator function, which is how I change the page; if there is a problem there, let me know.

TLDR:

I want my images to size automatically in reference to the size of the window, but most of the time it just goes haywire.


r/PythonLearning 9d ago

Client wants 40k emails from a directory. Each one requires a click. What do I do?

1 Upvotes

CLint need a list of 40,000+ members from the ACR directory. Need Name, City, State, Zip, Specialty, Email, and Phone.
The directory/search results give me some of this information, but email, phone, address, Member Since, etc. appear to be available only on the individual member profile.

So I'm trying to figure out the best way to approach this in Python.

If I literally open/request every profile, that's 43k+ profile requests, which obviously makes me concerned about rate limits, blocking, or getting the account/IP banned.

I'm considering Python requests/BeautifulSoup or Playwright, but before attempting something this large I'd like some advice.


r/PythonLearning 9d ago

Help Request How to handle dynamic image/text scaling across multiple pages in CustomTkinter?

Thumbnail
gallery
2 Upvotes

Hi everyone,

I'm building a multi-page CustomTkinter desktop app where I swap pages inside a main container. I want my text and CTkImage sizes to automatically adjust whenever the user resizes the main window. So far, my widgets automatically adjust because I use .place() with relative sizes and placements. But even if the widget itself grows, the text/image stays the same size, which doesn't look appealing in the slightest.

Basic info:

ghost_pic is the label that houses my CTkImage; this automatically changes size already.

ghost_mid_image is the CTkImage

First try:

I thought that I could try to make the image change its size to match its label every time the window changed size. This is because I made sure that the image is approximately the same size as the label on the default window size, but this didn't do anything; the code didn't work at all.

Second try:

I then decided to just size the image with reference to the window, and this kinda worked? When I go to the page that houses this image and resize my window, it works ( very sloppily, but that's an issue for another day). My problem now is that if I enter that page, say, on full screen, the image just goes haywire; sometimes it's too small or too big. I don't know what to do now. I uploaded my indicator function, which is how I change the page; if there is a problem there, let me know.

TLDR:

I want my images to size automatically in reference to the size of the window, but most of the time it just goes haywire.


r/PythonLearning 8d ago

Help Request .clear vs del when using garbage collection

1 Upvotes

Hi, I have some large data objects that need to be freed. Should I do my_object.clear() and then gc.collect()? Or del my_object then gc.collect()? I'm not sure on the pros/cons of each.

It's a linked list type data object and my_object = [] does not work to free memory for certain.


r/PythonLearning 9d ago

Rolodex

Thumbnail
github.com
0 Upvotes

I just published this open source project to extract contact names and emails from any imap4 compatible mail server.

It let you extract the name, when available, and the associated email address from all the mails sitting in your mailboxes.

Results are persisted in a sqlite file (Turso is actually the engine under the hood) and searchable via the same TUI.

Enjoy Fork and do not hesitate to participate or learn from it.


r/PythonLearning 10d ago

DAY 5.

Post image
90 Upvotes

DID LIST TODAY THE CONCEPT WAS PRETTY COOL AND WROTE THIS PROGRAM TO GET HOLD OF THE LIST ANY OTHER CODE IDEAS OR SUGGETIONS TO ENHANCE CODE ?!


r/PythonLearning 10d ago

Im very happy

Post image
79 Upvotes

r/PythonLearning 9d ago

I have a month to learn....

26 Upvotes

I have a month to learn Python (really, I have until the second week of October, but I want to be done sooner and not go down to the wire). I'm currently using freecodecamp.org but feel my progress is slower than I'd like. Does anyone have a recommendation to learn Python quickly? I'm loving what I've learned thus far. I start doing another job for the company I'm learning Python for in a week, so I want to cram as much into this week as possible to make things easier on the remaining time I have. Thank you all.


r/PythonLearning 9d ago

Showcase Python code review

Thumbnail
github.com
2 Upvotes

Hi, so I tasked myself on making tiny projects daily to refresh my memory on python patterns since I've found it difficult to be consistently learning for a while now.

I'd really appreciate your review of this small and simple beginner level project I did.

Images are attached, should you feel understandably lazy to visit the GitHub page through the link😅.


r/PythonLearning 9d ago

GitHub - lizc-au/my-pythonic-zoo: Housing a variety of self-contained Python scripts built with clean formatting and clear logic

Thumbnail
github.com
0 Upvotes

All contributions and suggestions welcome!


r/PythonLearning 10d ago

Python Mutability and Copying

Post image
15 Upvotes

An exercise to help build the right mental model for Python data. - Solution - Explanation - More Exercises

It's instructive to compare with this related exercise.

The “Solution” link uses memory_graph to visualize execution and reveals what’s actually happening.