LoslegenKostenlos loslegen

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.

Diese Übung ist Teil des Kurses

Introduction to Python for Finance

Kurs anzeigen

Anleitung zur Übung

Print the data types associated with the variables company_1, year_1 and revenue_1.

Interaktive Übung

Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.

# Type of company_1
print(____(company_1))

# Type of year_1
____(____(year_1))

# Type of revenue_1
____
Code bearbeiten und ausführen