Answers for "What do you understand by Data type? Which are the different data types available 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

Code answers related to "What do you understand by Data type? Which are the different data types available in Python?"

Python Answers by Framework

Browse Popular Code Answers by Language