#Type
Автор: Coder Decoder
Загружено: 2021-01-24
Просмотров: 294
Описание:
type()
The type() function returns the type of the specified object.
a = ('apple', 'banana', 'cherry')
b = "Hello World"
c = 33
x = type(a)
y = type(b)
z = type(c)
print(x)
print(y)
print(z)
Output
------------
'tuple'
'str'
'int'
Повторяем попытку...
Доступные форматы для скачивания:
Скачать видео
-
Информация по загрузке: