You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

6 lines
137 B

print(5, type(5))
print(5.0, type(5.0))
print(5 % 2, type(5 % 2))
print(5 > 1, type(5 > 1))
print('5', type('5'))
print(5 * 2, type(5*2))