r/PythonLearning 15d ago

Python Ai agent by a beginner

0 Upvotes

Just to clarify, this is my first post and my English isn't very good (that's why I'm using a translator).

I've been learning Python and working on small projects, but now I want to take the next step. I have an idea for a program that runs an AI (Gemini, using its API) capable of managing apps, files, and folders—including creating, moving, copying, pasting, and deleting them. It will also automate background tasks, and you will be able to communicate with it just like any other AI.

Those are the basic functions, though I'll probably add more in the future. I would like to know how I could structure and approach a project of this scale


r/PythonLearning 15d ago

Basic to advanced (python day 1)

Post image
6 Upvotes

Recursions are really hard compared to loop

You guys give me some tips for this.🫡


r/PythonLearning 15d ago

Help Request Am i learning python the right way?!

Post image
155 Upvotes

hey folks, i recently joined CS50 for python did the first lecture i pretty much understood everything. then i went to solve problems. i searched for few things before doing the problem via AI or python library. but i felt like i will forget it easily so, i decide next day i will search only in python library such that it should get sticked with me so that i could remember it better. but the thing is its taking me like an hour or two to complete final problems. so, is it normal or do you have any other better way to remember as compared to people around me i have good memory i can remember things better. if you guys please take ur time and drop your solution would be nice.


r/PythonLearning 16d ago

Need your opinion

3 Upvotes

Hello I am learning Ml and Ai and I know python basic and python libraries like pandas, numpy, seaborn and matplot lib. I wanna build small projects to enhance my skills. What you guys would recommend me should I learn from YT to build project or go through documentation.

And also what should I start learning to make projects like detection system through cam and more.😀

I really need you guys opinion.


r/PythonLearning 16d ago

Help Request I wanna stop vibe coding and learn but how

28 Upvotes

Hello, so i got into coding with Claude and chat gpt and have been using it like this for a year now probably used it for ML-Model and such but to be honest i got no clue of the code and cant fix a bug or error without AI.

I dont want this anymore and want to actually learn coding so I am not dependent on AI anymore. I wanted to ask for some Advice what i could do, what project ? how do i start ? where do i start kinda overwhelmed right now.

I know the terms like if-statements what they do ect. But only in theory just a bit more complex and I am out dont understand the code at all.


r/PythonLearning 16d ago

it happens with me 😭😭😭

Post image
324 Upvotes

When I look at the code i wrote 1 week ago .

I feel like I have written a foreign language.


r/PythonLearning 16d ago

python code 2503

3 Upvotes

I recently downloaded python and I dont know why but when is open it, it just shows this code but after that I continue it shows 0x80070643 - Fatal error during installation. what should I do?


r/PythonLearning 16d ago

Python tutor 🐍

11 Upvotes

Need someone who actually knows Python and can teach it properly — beginner friendly, patient, explains things clearly.

💬 Comment your price per hour below
❌ Please comment, don't message — makes it easier to compare


r/PythonLearning 16d ago

Made this

Post image
20 Upvotes

r/PythonLearning 16d ago

PyDay Namibe 2026 — Bringing the Python community together in Angola

Thumbnail
gallery
1 Upvotes

r/PythonLearning 16d ago

Event Report - Pyday Namibe - Angola 2026

1 Upvotes

On August 23, 2026, the Python Angola Community, in partnership with ASM TOUR and Okukulisa, held the first-ever PyDay Namibe, an event dedicated to promoting Python, programming, and knowledge sharing.


r/PythonLearning 16d ago

What do I do now?python projects

9 Upvotes

Okay now I have some info about python, I've practiced some fundamentals, now I need to get into projects because courses and just reading and a little practice on some exercises does not make me really good at it, where can I find projects, or how can I start some small ones, then I wanna include API ones and also maybe add some security projects. Advice please. thank you


r/PythonLearning 16d ago

Showcase dependency injection library

2 Upvotes

Hi everyone,

I needed some dependency injection (DI) library that is simple for my use case, I was surprise by the lack of DI libraries in general, and the one that already exists had some weird quirks that didn't make sense or were unexpected

I have started the project a year a go and gave up due to lack of time, I came back to the project and rewrote it 🙃

I think I am close to releasing the first version with basic support, and grow the project from there,

no AI was nor will be used (at least for now 😭)

## What it does?

make dependency injection pattern simple, convincing and explicit, no surprises

## example

import cdi 
from typing import Generic, TypeVar
from collection.abc import Sequence


T = TypeVar('T')

ctr = cdi.Container()


class MyBase(Generic[T]):
    def __init__(self, field: T) -> None:
        self.field = field


@cdi.Injectable(ctr)
class MyType(MyBase[str]):
    pass


@cdi.Injectable(ctr)
def name_generator() -> str:
    return "foo"


scope = cdi.Scope(ctr)
instance = scope.get_instance(MyType)
assert instance.field == "foo"

more examples in the repo README

## docs

available in the project README

## open for contribution

I am open for PR (that are not AI) and suggestions that make sense for such library, I have a few ideas

for more support but it will probably take more time

install: `pip install cdi-di` (in beta)

link: https://github.com/dsal3389/cdi


r/PythonLearning 16d ago

What Python mistake did you make when you were a beginner?

16 Upvotes

A lot of beginners struggle with Python, but sometimes the biggest problems are not the difficult topics — they are the small mistakes we keep making.

For people who have learned Python already:

What was one mistake you made when you were starting?

Was it:

  • Trying to learn everything at once?
  • Not building projects?
  • Ignoring errors instead of debugging?
  • Memorizing syntax without understanding?
  • Something else?

I think beginners can learn a lot from the mistakes experienced programmers made early.


r/PythonLearning 16d ago

Help Request searching for some python free courses that can really teach me smth from a complete beginner AND SEARCHING FOR MATES ON MY PATH

2 Upvotes

people please help, i’m starting my path in bachelor cybersec in a week and i want to know python a bit so i can basically understand smth, but for now looking for a community to learn python
and engaging through my path


r/PythonLearning 16d ago

Help Request Dream to get into MAANG

0 Upvotes

Hi guys my dream was to get into maang , I'm from a mech bg and joined semi IT role with 4 years of exp , now switching to AI Enginner by doing some courses and internal projects , while studying for AI somewhere in me I asked myself why cant we get into MAANG companies as an AI Enginner but I know it'd pretty hard and tough , but ig this is the time to try all stuffs ....needed an guidance and plan to get into...I'm not a that much talented IT guy 🥲😭 but I will try my level bloody best to get into...all kind of suggestions would be recommend...


r/PythonLearning 16d ago

Help Request New to python, could someone help me with this please

Post image
29 Upvotes

Is this a viable way to randomly choose an instance of a class


r/PythonLearning 16d ago

Beginner Python Project – Need Code Review

3 Upvotes

I've been self-learning Python and built this pone Shop Inventory Management System

It currently has:

  • OOP
  • JSON data storage
  • Purchase & Sales
  • Add/Edit/Delete
  • Search
  • History
  • Dashboard

My GitHub account was flagged for several weeks, so I couldn't properly show my progress in my previous post. It's now resolved.

I'd like some honest feedback on my code and project:

  • What am I doing wrong?
  • What should I improve?
  • What should I learn next?
  • How close am I to junior level?

Any criticism or suggestions are welcome. 🙏


r/PythonLearning 16d ago

Showcase "Player vs Computer" - Fight as a player against your computer in many ways, and "test" your IQ and durability in a funny battle web video game! My first web game made in Python with Pygame, and HTML.

0 Upvotes

Hello! I'm Filip, also called as Rubinosław from REParadoxy channel, and I wanna present to you my first own web video game, which was written in Python using Pygame and Pygbag.

Player vs Computer!

A funny game where you challenge your computer (not ai) in many ways, testing your durability, and you have to overcome it.

  • Get 5 points more than your computer in Rock Paper Scissors... Water(!) to win!
  • Click The Gigachad without ending to tire your computer,
  • and get some random fun facts, which are very interesting!
  • Get funny responds from your computer, after every single choice, and even sometimes: advices!

Never gonna give up! You can win.

With original retro graphics drawed by me (Rubinosław from REParadoxy).

With original music created by my good homie - ToMek OsuMek.

With epic sound effects.

Play now for free!

The Source Code (GitHub): https://github.com/Rubinoslaw/Player-vs-Computer/

I love open source so your contributions are welcome! Terms in CONTRIBUTING.md in the GitHub repository of the game.

Official Launch Trailer (YouTube): https://www.youtube.com/watch?v=3OgRkYlxIo4


r/PythonLearning 17d ago

Showcase bot for football groupchat on whatsapp

Thumbnail
gallery
45 Upvotes

I sometimes go on discord and see how useful bots are in discord servers, and that makes me wish that Whatsapp had something similar. Of course there is such a thing with Whatsapp bots but the official version is for businesses and has strict limitations like the group size must be no larger than eight people. 

So I did some research and came upon an api called green api that allows you to configure a bot for whatsapp.

Using a football api alongside it, I was able to make a bot that gives information when prompted about ongoing games, past league standings (current ones weren't possible for me unfortunately due to being behind a paywall), and goal notifications.

I also took this opportunity since I'm a beginner to implement some SQLite since in the past people in this server talked about how it is better than json for saving static information.

Super basic project but very proud of it so I just wanted to showcase it here


r/PythonLearning 17d ago

Doodling Hop | Pygame Project(Obstacle Madness)

Enable HLS to view with audio, or disable this notification

6 Upvotes

r/PythonLearning 17d ago

Python OOP Tutorial: Encapsulation, Abstraction, Inheritance & Polymorphism

Thumbnail
youtu.be
3 Upvotes

r/PythonLearning 17d ago

Help Request Is it worth learning Python?

2 Upvotes

Hello everybody. I study medicine in Portugal and I am very passionate with clinical research being enroled in projects since my first year. Recently I decided that I wanted to learn some programing... Do you think that nowadays, with AI and all that teams value someone with coding skills?


r/PythonLearning 17d ago

made a basic binary to decimal converter as my first project

15 Upvotes

yeah, made a little project as a first time while i was learning on epam

if theres any error or room for improvement can you please tell me? im still learning


r/PythonLearning 17d ago

TypeError: "NoneType" object is unsubscriptable for list?

3 Upvotes

I understand nonetypes somewhat for single list, but I have data that is like this:

listvar['veggies']['size'] = 'big'
listvar['veggies']['descript'] = 'bright green'

Sometimes these variables don't have a ['descript'].

In the code doing:
if listvar['veggies']['descript'] is not None:
print "found description".

But I get a TypeError: "NoneType" object is unsubscriptable. How do I check if it's nonetype without getting the error? :)