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.
Questo esercizio fa parte del corso
Introduction to Python for Finance
Istruzioni dell'esercizio
Print the data types associated with the variables company_1, year_1 and revenue_1.
Esercizio pratico interattivo
Prova a risolvere questo esercizio completando il codice di esempio.
# Type of company_1
print(____(company_1))
# Type of year_1
____(____(year_1))
# Type of revenue_1
____