-
-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create GuessTheNumber.py #100
base: develop
Are you sure you want to change the base?
Conversation
I will do the rest later. :)
GUESS_NUM_LOS = [ | ||
"That was close.", | ||
"Better Luck Next Time Mate.", | ||
"Be enthusiastic and give it a try once more!', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Kindly close the statement with the same double quote you've used at the start..
|
||
GUESS_NUM_WIN = [ | ||
"Congragulations! You really are a genius.", | ||
"You havae won the game by Guessing the Number correctly.", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
there is a typo.. please change havae
to have
if processed.isspace(): | ||
return "You should enter for me to check it!" | ||
if process.isalpha(): | ||
return "There are no aplhabets in the number. Please enter a nuumber!" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Replace aplhabets
with alphabets
from sugaroid.core.statement import SugaroidStatement | ||
|
||
GUESS_NUM_WIN = [ | ||
"Congragulations! You really are a genius.", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Typo again Congratulations
Ping me when you are done. I will review once you have marked this PR ready for review. |
I will do the rest later. :)