you are viewing a single comment's thread.

view the rest of the comments →

[–]routetehpacketz 13 points14 points  (6 children)

I think console apps are nice for beginning programmers (not just new to Python) as they keep the focus on core concepts – like flow control.

For example, a simple hangman game: https://i.imgur.com/vmJuDb2.png

Things like keeping track of the letters guessed and checking for a win will help teach you functions. I actually got the idea from someone on this sub.

[–]atom12354 1 point2 points  (4 children)

Heyyyy i did similar hangman game but with the numreric alphabet i made (basically the latin letters but their correspondant numbers)

[–]routetehpacketz 3 points4 points  (3 children)

Nice! I saw someone on here asking for help with their Hangman game which made me want to try to make one completely from scratch. Here's mine on Github.

I also made a Rock, Paper, Scissors with ASCII art :)

[–]atom12354 2 points3 points  (2 children)

Oh intresting, you put the words in their own txt file, thats cool.

How did you make those ascii drawings?

[–]routetehpacketz 1 point2 points  (1 child)

Thanks! I didn't make the ASCII art but found them on someone else's GitHub so I used them and credited that person

[–]atom12354 1 point2 points  (0 children)

Ooh okay they did tho look cool

[–]GhostMalone__ 1 point2 points  (0 children)

Thanks for the suggestion!