Python: built-in functions
print()
: built-in function that displays input value as text in the output
>>> print(3+5)
8
type()
: built-in function that returns the type of an object
>>> print(type(3.3))
<class 'float'>
print()
: built-in function that displays input value as text in the output
>>> print(3+5)
8
type()
: built-in function that returns the type of an object
>>> print(type(3.3))
<class 'float'>