Untitled4.ipynb - Colab
Untitled4.ipynb - Colab
guesslist = []
print(f'I am thinking of a number between {num1} and {num2}, inclusive. Guess the number!')
num1 = int(input('Enter the lowest number you would like to play with: '))
num2 = int(input('Enter the highest number you would like to play with: '))
actualnum = random.randint(num1, num2)