Python Simple Exercise

Python Simple Exercise

name = 'Smith'
print('name: ',name)

age  = 13
print('age: ', age)

location = 'New York'
print('location: ',location)

availability = True
print('availability: ' , availability)

num = 15.4
print('num: ' , num)


#Question 1
#What is the data type of name?


#Question 2
#What is the data type of age?


#Question 3
#What is the data type of location?


#Question 4
#What is the data type of availability?

#Question 5
#What is the data type of num?