Answers for "Datat types in Python"

4

python data types

# Float
average_tutorial_rating = 4.01
# Integer
age = 20
# Boolean
tutorials_are_good = True # True or False
# arrays/lists
numbers = [1, 2, 3]
Posted by: Guest on October-05-2020
-2

finding data types in python

To find the data type of data in Python, you use the type() function. You place the variable inside of the type() function and Python returns the data type
Posted by: Guest on May-22-2021

Python Answers by Framework

Browse Popular Code Answers by Language