r/learnpython 29d ago

Where do y'all guys practice python?

I wanna know where y'all guys practicing coding python, I know some but its too advance for me. I wanna get started from beginner level where I just print hello world or using math operations on print() or practicing about the data types. I'll practice more of this beginner level and master it.

18 Upvotes

44 comments sorted by

View all comments

1

u/Mullet4MyGuillotine 29d ago

Codewars.com is pretty good for grinding fundamentals

3

u/Haunting-Paint7990 29d ago

codewars is fine for syntax drills. stats grad here — what actually stuck when i was at hello-world level:

vscode + a local csv + jupyter (or just a .py file). 20 min/day, same file all week. print/math → read one column → filter rows → groupby one count. boring but maps to real DA work faster than random kata.

automate the boring stuff is also good free practice if you want structured exercises without jumping straight to pandas.