if num < 3
print('The number is ' + num)
print(f'{num is less than three')
prin('thanks for playing!")Output:
The number is 1
1 is less than three
Thanks for playing!
if num < 3
print('The number is ' + num)
print(f'{num is less than three')
prin('thanks for playing!")Output:
The number is 1
1 is less than three
Thanks for playing!