#๐Ÿ”’ begginer pythoner

11 messages ยท Page 1 of 1 (latest)

vagrant nymph
#

Hey guys im been learning python for 2 weeks i finished beginner crash course so i wondering how i propell my self in the next stage

glad abyssBOT
#

@vagrant nymph

Python help channel opened

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.

north shard
#

I like making little games like hangman or tictactoe

split zephyr
north shard
#

I'd also try and recreate any of the exercises from the beginner crash course, but without the guidance of the course this time

split zephyr
#
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)

reef roost
#

take cs50p. It's a free, online course from Harvard that is an introduction to programming (and it uses python)

glad abyssBOT
#
Python help channel closed for inactivity

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.