#๐ begginer pythoner
11 messages ยท Page 1 of 1 (latest)
@vagrant nymph
Remember to:
- Ask your Python question, not if you can ask or if there's an expert who can help.
- Show a code sample as text (rather than a screenshot) and the error message, if you've got one.
- Explain what you expect to happen and what actually happens.
:warning: Do not pip install anything that isn't related to your question, especially if asked to over DMs.
Start doing small little projects to practice
I like making little games like hangman or tictactoe
try doing text adventures, do items, inventory, get used with dictionaries and etc. and maybe a hardcoded talking system
I'd also try and recreate any of the exercises from the beginner crash course, but without the guidance of the course this time
guy_msg = {
"hi": "hello!",
"how are you doing?": "doing good",
"what do you do often?": "coding"
}
while True:
user = input("Chat: ").strip().lower()
if user in guy_msg:
print(f"Guy: {guy_msg[user]}")
else:
print("Guy: i dont understand that")
talking system could be like this (simplified version) you could add more logic
if text adventure isnt your type you could do one of these projects (assuming you know how to do them):
1: Save/open Files.
2: Generate passwords.
3: Minigame (terminal).
4: TicTacToe.
5: Hangman.
6: AI chatting system. (dicts usage)
7: Len usage. (built-in function called 'len' try to use it in a project) (like checking the lengths of passwords)
take cs50p. It's a free, online course from Harvard that is an introduction to programming (and it uses python)
This help channel has been closed. Feel free to create a new post in #1035199133436354600. To maximize your chances of getting a response, check out this guide on asking good questions.