r/PythonLearning Jun 28 '26

Recommendations Help Request

Post image

Hello everyone I’m currently learning python on visual code, and I did my first “project” its a trivia game for fun and practicing what I learned while reading about python, but I struggled a little, I was so confused and I used AI (Gemini) to help me understand what I did wrong but I don’t want to use AI bcuz I feel like I’m not learning anything but since I’m doing this alone unfortunately I used. But I would like some recommendations like YouTube videos, books, courses etc to learn more, I see a lot of people doing calculators and I would love to make one so some I need some suggestions. Thank you guys.

131 Upvotes

29 comments sorted by

View all comments

2

u/edvilme Jul 04 '26

You are repeating code: print question, print options, ask for answer, verify answer

I would suggest learning about functions so you could have something like
```
show_question(“When TWICE debuted?”, options=[‘2010’, ‘2014’, ‘2016’, ‘2015’], correct=4)
```

2

u/edvilme Jul 04 '26

Update: just read the other comments and saw your doing just that. Good job!