Matthew Pease
@Peaseboy2234
I am just having fun
Can people give me more answers (and jokey responses) to the cookie question I want people to have fun with their answer
Python
Can people give me more answers (and jokey responses) to the cookie question I want people to have fun with their answer
Python
Jackal42 You could format the answer to remove punctuation so that more responses would be accepted.
import string
choice = choice.translate(str.maketrans('', '', string.punctuation))
This would allow for an answer to be given more of the time.2 years ago
Baconman321 Try posting this in share. Also, I used the binary search algorithm (HA), so it wasn't too hard to guess.2 years ago
I’m trying to do like if they say yes to wanting a cookie then I will say something, can someone help me with that
Python
Wumi4 Maybe using input and if-elif statement?
choice = input(">")
if choice == "yes":
Do something
elif choice == "no":
Do something
`2 years ago