0
Have not choice. Python3.
Here is a function (on my profile, first post) that suppose using a choice but don't do it and always takes the first variant.
2 Answers
+ 2
You can add feed-post link here...
Btw the fisrt condition is always true..
choise == "yes" or "yes"
If you don't input "yes" then also true because other than "" (empty string) will equal to 1 or True in boolean..
But why there 2nd "yes"
Remove or condition
Just put
Choice == "yes" :
elif choice == "no" :
0
Wow, thank you