Python Forum
1st Project Guess between 1 and 20
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
1st Project Guess between 1 and 20
#4
(May-31-2020, 04:11 PM)NectDz Wrote: I see in your type 'Quit' to give up you could of made it more effective and simpler. Let's say they type qUiT the program does not know what to do.

This is a good point. One easy way to deal with this possibility would be to change line 5 to use the string method lower() so that no matter how they type it, you only evaluate what it looks like with all lower-case letters.
if guess.lower() == 'quit':
Reply


Messages In This Thread
1st Project Guess between 1 and 20 - by MiNigle - May-31-2020, 09:35 AM
RE: 1st Project Guess between 1 and 20 - by GOTO10 - May-31-2020, 03:05 PM
RE: 1st Project Guess between 1 and 20 - by MiNigle - May-31-2020, 06:44 PM
RE: 1st Project Guess between 1 and 20 - by NectDz - May-31-2020, 04:11 PM
RE: 1st Project Guess between 1 and 20 - by GOTO10 - May-31-2020, 04:24 PM

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020