define a type python code example
Example 1: python declare int
x = 5
print(type(x))
Example 2: type python
string_example = "string"
int_example = 1
float_example = 1.1
type_of_string = type(string_example)
type_of_int = type(int_example)
type_of_float = type(float_example)
Example 3: declare float python
myfloat = 7.0
Example 4: type in python
numbers_list = [1, 2]
print(type(numbers_list))
numbers_dict = {1: 'one', 2: 'two'}
print(type(numbers_dict))
class Foo:
a = 0
foo = Foo()
print(type(foo))
Output
<class 'dict'>
<class 'Foo'>
<class '__main__.Foo'>