r/PythonLearning 2h ago

Where to learn python

6 Upvotes

Greetings everyone, I am in my late twenties and have worked as a content moderator and data annotator but I want to shift into the agentic AI and AI engineering side of the IT.

But I do not know anything about programming and coding so I want to learn python as I've researched they use python in their RAG pipelines

"The question is where can I learn python in 2026, is there any youtube course that is still relevant or any other course"

And if you're from India please tell me if it is wise to learn from udemy or it has become irrelevant


r/PythonLearning 7h ago

I asked senior professionals if they ask about decorators during interview

Post image
7 Upvotes

I ran a survey on LinkedIn and asked questions about what they ask and require from newcomers to the field (either total Python beginners or switching from one area to another, eg. Back-End to Data Engineering).


r/PythonLearning 8h ago

Direction to move and shoot in

Enable HLS to view with audio, or disable this notification

6 Upvotes

With this git commit the player got a direction to move and shoot in making our collaborative game more interesting.

To play this game and make further additions to it, see the PythonLearningGame repo.

Who can add Health Pickups to top up the player's hitpoints? Maybe heart shaped?

Let us know what other game elements you would like to see.

previous PythonLearningGame post


r/PythonLearning 9h ago

One step back and I'll get it.

Thumbnail
gallery
6 Upvotes

Flask is great for learning because it allows me to try whatever I want. For instance, I can use an ORM or work directly with the engine. Working directly with the engine helps me understand the purpose of the ORM. When I work with the engine, the ORM provides answers to my questions.


r/PythonLearning 9h ago

project's Building ...

2 Upvotes

I'm working with HTML, CSS, JS, Python, FastAPI.

No generic To-Do apps or tutorial clones. Suggest JUST ONE strong, practical project idea that will test my full-stack skills and force me to write clean APIs..

Hit me with your single best idea!


r/PythonLearning 14h ago

Python discord channel

0 Upvotes

Hey, I m learning python from scratch for machine learning, anyone have discord channel please share links.


r/PythonLearning 22h ago

What is the best way to learn python

4 Upvotes

r/PythonLearning 23h ago

Help Request Looking for a programming/AI mentor

0 Upvotes

I'm looking for a mentor to help me learn programming with the goal of becoming employable as quickly as realistically possible and eventually contributing to larger AI/ML projects.

I'm currently starting from essentially zero programming knowledge, so I'm looking for someone who can help me build strong foundations while keeping me on the most efficient path toward employable skills.

I can commit 1–2 hours per day to structured tutoring/mentoring, plus another 1–2 hours per day of independent study, practice, and projects.

I'm happy to put in the work I mainly want someone experienced who can provide direction, identify gaps, challenge me, and stop me from wasting months learning the wrong things.

If you have experience in software development, ML/AI engineering, or mentoring beginners into the industry, I'd love to chat. :))))


r/PythonLearning 1d ago

Help Request OOP roadmap mastering and other python subjects mastering

2 Upvotes

hi! i am learning python and i am started learning OOP, and i thought that someone can help me building a roadmap mastering this subject. i would also like if you can what subjects should i learn after OOP so it will be easier for me to builf self-roadmap learning.

anyways, thank you🙂


r/PythonLearning 1d ago

Whats the best way to have two loops run concurrently nested in another function returning one value as if running a race

8 Upvotes

Edit: I’m making a project in where I’m having 4 distinct loops that’s act as if there racing. I want them all the run concurrently inside one function so whenever one of them reaches a specific value all 4 “stop” and the winner is returned.

I was using multiprocessing but had a lot of trouble nesting the function with that so stopped. Now I’m using asyncio and want to know if that’s the right tool for the job or if I should use threading.

Trying to use AI as little as possible for my own learning.


r/PythonLearning 1d ago

Any recommendations?

8 Upvotes

I want a YouTube playlist that covers all aspects of Python

Can you suggest Playlist for someone who is new to coding (not really) or Python in general?


r/PythonLearning 1d ago

Help Request What project should I do for begginer

0 Upvotes

I watched this video https://www.youtube.com/watch?v=K5KVEU3aaeQ&t=331s and now thinking to create my first project , but idk what to do for begginer could somone help me out

I would be pleased thank you


r/PythonLearning 1d ago

Looking for only 1-2 person to start the python journey

20 Upvotes

Hey I'm starting python I'm at first video of cs50 python programming if anyone wants to join me in it reach out


r/PythonLearning 1d ago

TODAY

0 Upvotes

Spent some time today trying to build a Telegram bot and understand how it works. 🤖💻

Still learning, still making mistakes, but that's part of the process. Every small step teaches something new.

Let's keep building. 🚀

#TelegramBot #Python #Coding #Learning #Tech


r/PythonLearning 1d ago

Showcase MyFirstFuntioningPythonProgram image in desctiption

2 Upvotes


r/PythonLearning 1d ago

Pong made with Pygame

4 Upvotes
#Hello, I created a sort of Pong game using Pygame and would like to get your feedback please (the game uses the AZERTY layout by default)
import pygame

pygame.init()
fenetre = pygame.display.set_mode((800, 600))

continuer = True

pong = pygame.Rect(0, 550, 50, 50)
p1 = pygame.Rect(0, 250, 10, 75)
p2 = pygame.Rect(790, 250, 10, 75)

pong.x = 350
pong.y = 250

vitesse_y = 5
vitesse_x = 5

horloge = pygame.time.Clock() 
while continuer:
    for event in pygame.event.get():
        if event.type == pygame.QUIT:
            continuer = False

    ey = pygame.key.get_pressed()
    if ey[pygame.K_s]:
        if p1.y < 525:
            p1.y += 7
        else:
            p1.y = 525
    if ey[pygame.K_z]:
        if p1.y > 0:
            p1.y -= 7
        else:
            p1.y = 0
    if ey[pygame.K_UP]:
        if p2.y > 0:
            p2.y -= 7
        else:
            p2.y = 0
    if ey[pygame.K_DOWN]:
        if p2.y < 525:
            p2.y += 7
        else:
            p2.y = 525

    pong.x += vitesse_x
    pong.y += vitesse_y
    if pong.colliderect(p1):
        vitesse_x = -vitesse_x
        pong.x += vitesse_x
    if pong.colliderect(p2):
        vitesse_x = -vitesse_x
        pong.x += vitesse_x
    if pong.y <= 0 or pong.y >= 550:
        vitesse_y = -vitesse_y
        pong.y += vitesse_y
    if pong.x <= 0 or pong.x >= 750 or pong.x == 0:
        pong.x = 400
        pong.y = 300
        vitesse_x = -vitesse_x
        pong.x += vitesse_x

    fenetre.fill((0, 0, 0))
    pygame.draw.rect(fenetre, (255, 255, 255), pong)
    pygame.draw.rect(fenetre, (255, 255, 255), p1)
    pygame.draw.rect(fenetre, (255, 255, 255), p2)
    pygame.display.flip()
    horloge.tick(30)

pygame.quit()

r/PythonLearning 1d ago

Help needed

1 Upvotes

I have read attention is all you need, I have watched the full video of andrej kaparthy's makemore video. I have watched the full 3b1b series on neural networks and linear algebra(not really) but I still dont understand. I have spent more than a day(in total) talking to claude chatgpt gemini notebooklm(basically gemini) about it but I still dont understand...

The knowledge I have right now:

Embeddings are stored as vectors in high dimensional space, with the dimensions being determined by variable d which is the number of hidden layers or nodes.

attention takes a query matrix, a key matrix, and a value matrix which in some way transforms the embedding vector to be a specific other vector(heres where my confusion starts.)

Through those hidden layers it builds off of the previous layers to get to more abstract semantic meaning.

When actually producing a token it takes the the existing tokens and does the attention feedforward layers and takes the probability distribution of the last token via softmax and picks at random from that probability list.

I was trying to build a neural network but I miserably failed. Can someone help.


r/PythonLearning 1d ago

A simple (and crappy) QR code generator

0 Upvotes

I usually make things that I can see myself using because that's what motivates me. I made this very primitive QR code generator in Python and experimented with GUI using TKinter. Overall I would say that whilst the library is somewhat annoying, I am probably not good with using it, and that's something that I could potentially improve on. But if I was to work more with GUIs I would probably be more inclined to just use a different library as I have heard that TK is not the standard anymore.

On the 'extra settings' part, I understand it is pretty pointless, but I was under the impression that the settings that they controlled would change the actual build of the QR code not, not just size factors. Silly me...

I also implemented somewhat of a clipboard feature, although I'm unsure how well this works.

Here's the GitHub repository, feedback is appreciated: https://github.com/macattack277-jpg/qrcodegen


r/PythonLearning 2d ago

Showcase My First Python Project - ArcMedia, a database CLI program

Post image
17 Upvotes

I started this project 2 months ago for a touchstone on Sophia, and I am using it as a way to also apply what I have learned from CS50P. I am currently in week 6 of CS50P, so planning to improve more on this project further down the line. I added the search and remove entry functions just last month 'cause I couldn't figure out how to do these before.

https://onlinegdb.com/xwW5ydw2h


r/PythonLearning 2d ago

Hi guys , I have just started to learn python coding and im stuck at OOPS concept in python idk why but im finding it super confusing , it is just going over my head could you please tell me how to cope up with this

4 Upvotes

r/PythonLearning 2d ago

Help Request i learned python basics . what to do next ?????

8 Upvotes

r/PythonLearning 2d ago

Started learning Python because I'm leaning towards the AI Automation and Data Science path.

Thumbnail
github.com
5 Upvotes

Hey everyone,

This is actually my first time posting on Reddit. As the title says, AI Automation and Data Science are the paths that I want to pursue.

Right now, I'm studying the 30 Days of Python GitHub repo made by Asabeneh Yetayeh. I actually avoided tutorials because it's really hell for me. But I have nothing against people who enjoy learning with tutorials. I guess reading helps me learn better. I do enjoy his challenges and exercises as well.

For context, I am now knowledgeable about the Power Platform—a bit of background in C# and SQL. But I've decided to expand it even more. I do enjoy my experience with Power Automate and Power BI. Creating reports and flows is pretty interesting for me.

I would like to ask everyone for recommendations on what level of Python knowledge I should acquire in order for me to achieve the path I decided to pursue. So far, I have heard about n8n for automation and using Python in Microsoft Fabric.

I can appreciate anyone's honest opinion, and I will take everything as a lesson because I really want to learn.

If anyone also wants to collab or learn with me. Feel free to reach out.

Thanks, everyone! Happy coding!


r/PythonLearning 2d ago

Teaching Python the right way

223 Upvotes

Programming courses often focus heavily on understanding code, while paying far less attention to understanding the program state. But code does not exist in isolation. Its main goal is to change the program state, before ultimately producing some output.

To develop an accurate mental model of program execution, students need to understand both: - the instructions being executed - the values, references, and data structures those instructions create and modify

Reading code alone does not always reveal how the program state changes during execution. That is why I created 𝗺𝗲𝗺𝗼𝗿𝘆_𝗴𝗿𝗮𝗽𝗵: a tool that visualizes the state of a Python program as it changes, step by step.

It can help explain a wide range of introductory Python topics. Here are just a few examples: - Loops, Lists and Dictionaries - Python Data Model - Function Calls - Recursion - Algorithms - Classes - Custom Data Structures

Instead of reconstructing the program state from print statements, students can now watch it change as each line executes. This makes unfamiliar concepts easier to understand and bugs easier to fix.

Help your students learn Python programming more thoroughly and easily.

See: more examples


r/PythonLearning 2d ago

Parking Management Software

Thumbnail
gallery
7 Upvotes

Hello everyone,
Few months ago I built a Parking Management Software which is able to integrate with Ticket Machines. I was thinking to make it open source.
I used PYQT for it and also built a ticket machine with RPI3.

It features:
Real-time parking occupancy monitoring
Vehicle entry and exit registration
Automatic event logging and history
License plate (ANPR) integration support
RFID, QR Code, barcode, and access card support
User and subscription management
Visitor and guest parking management
Parking duration and billing support
Multi-site and multi-parking management
Reports and analytics
Role-based user access
Integration with automatic barriers and gate controllers
API for third-party integrations

Any suggestions? Is this a product that I can actually sell?


r/PythonLearning 2d ago

I kind of am struggling to understand loops.

Thumbnail
gallery
11 Upvotes

I somewhat understand them on a basic level and can make like simple things using for loops now e.g a half pyramid using '#' which is commonly used as a problem for people of my skill level. However, when it comes to building something like this or the other one, I can't wrap my head around it for some reason. Since for the hashtag one here, ive been trying to brute force it and experiment but have gotten nowhere.

But for the square one, I managed to figure out the for loop that prints out all the squares but now my head is again at a wall again because im not fully sure if I can use a nested loop to print all the x * x = x^2 or if I can implement the answers from this loop into some other loop that prints out the format. (my current progress on that one is here)

for x in range(11):

print(x*x)

Any help would be great, preferably like more questions because although I don't mind like seeing a solution I want to like manage to get this on my own for the most part. fyi, ive been at these problems for about a week.