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.

5 lines
137 B

преди 5 години
  1. print(5, type(5))
  2. print(5.0, type(5.0))
  3. print(5 % 2, type(5 % 2))
  4. print(5 > 1, type(5 > 1))
  5. print('5', type('5'))
  6. print(5 * 2, type(5*2))