age = 21
gravity = 9.807
craft_name = "Voyager"
is_crewed = False

print(type(age))
print(type(gravity))
print(type(craft_name))
print(type(is_crewed))

<class 'int'>
<class 'float'>
<class 'str'>
<class 'bool'>