Epython Lab
6.4K subscribers
665 photos
31 videos
104 files
1.23K links
Welcome to Epython Lab, where you can get resources to learn, one-on-one trainings on machine learning, business analytics, and Python, and solutions for business problems.

Buy ads: https://telega.io/c/epythonlab
Download Telegram
#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