#Assignment
Guess The Number
Write a programme where the computer randomly generates a number between 0 and 20. The user needs to guess what the number is. If the user guesses wrong, tell them their guess is either too high, or too low. This will get you started with the random library if you haven't already used it.
Post your solution in the comment box
#LearnDataScience #LearnPython #StayHome
Guess The Number
Write a programme where the computer randomly generates a number between 0 and 20. The user needs to guess what the number is. If the user guesses wrong, tell them their guess is either too high, or too low. This will get you started with the random library if you haven't already used it.
Post your solution in the comment box
#LearnDataScience #LearnPython #StayHome
#Solution for #Assignment by @MINtaa911
You can forward your feedback via @pyDiscussion
#Guess the number
from random import randint
def guess_number():
num = randint(0,20)
guess = int(input("Enter your guess number: "))
while(num != guess):
if(guess > num):
print("Your guess is too high")
elif(guess < num):
print("your guess is too low")
else:
break
guess = int(input("Enter your guess number: "))
print("you win")
guess_number()
#LearnDataScience #LearnPython #StayHome #PreventCOVId19
You can forward your feedback via @pyDiscussion
#Guess the number
from random import randint
def guess_number():
num = randint(0,20)
guess = int(input("Enter your guess number: "))
while(num != guess):
if(guess > num):
print("Your guess is too high")
elif(guess < num):
print("your guess is too low")
else:
break
guess = int(input("Enter your guess number: "))
print("you win")
guess_number()
#LearnDataScience #LearnPython #StayHome #PreventCOVId19
Another #Solution for #Assignment by @Amalright
You can forward your feedback via @pyDiscussion
from random import*
Def fun_game(number_chosen):
data=randrange(0,20)
if(nuber_chosen> data):
print("too much")
elif(nuber_chosen < data):
print("too low")
else:
print("correct answer :")
J = 1
While(j !=0)
choice =int(input("Enter 1 to continue"))
if(choice ==1):
choice =int(input("Enter your try"))
fun_game(choice)
else:
j =0
#StayHome #PreventCOVId19 #LearnPython #LearnDataScience #LearnRandomNumber
You can forward your feedback via @pyDiscussion
from random import*
Def fun_game(number_chosen):
data=randrange(0,20)
if(nuber_chosen> data):
print("too much")
elif(nuber_chosen < data):
print("too low")
else:
print("correct answer :")
J = 1
While(j !=0)
choice =int(input("Enter 1 to continue"))
if(choice ==1):
choice =int(input("Enter your try"))
fun_game(choice)
else:
j =0
#StayHome #PreventCOVId19 #LearnPython #LearnDataScience #LearnRandomNumber
Forwarded from Epython Lab (Asibeh Tenager)
#Assignment
Guess The Number
Write a programme where the computer randomly generates a number between 0 and 20. The user needs to guess what the number is. If the user guesses wrong, tell them their guess is either too high, or too low. This will get you started with the random library if you haven't already used it.
Post your solution in the comment box
#LearnDataScience #LearnPython #StayHome
Guess The Number
Write a programme where the computer randomly generates a number between 0 and 20. The user needs to guess what the number is. If the user guesses wrong, tell them their guess is either too high, or too low. This will get you started with the random library if you haven't already used it.
Post your solution in the comment box
#LearnDataScience #LearnPython #StayHome
👍2