Take a look at the code. Match values with their types.
def check(x):
if 4 <= x < 50:
print(x)
else:
print("Wrong!")
number = int(input("Enter your number: "))
check(number)Take a look at the code. Match values with their types.
def check(x):
if 4 <= x < 50:
print(x)
else:
print("Wrong!")
number = int(input("Enter your number: "))
check(number)Create a free account to access the full topic