Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
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))
|