Determining types
Python has a built-in command type()
that can determine the type of a variable or literal value.
Let's determine the data types of the variables you created in the last exercise.
This exercise is part of the course
Introduction to Python for Finance
Exercise instructions
Print the data types associated with the variables company_1
, year_1
and revenue_1
.
Hands-on interactive exercise
Have a go at this exercise by completing this sample code.
# Type of company_1
print(____(company_1))
# Type of year_1
____(____(year_1))
# Type of revenue_1
____