Akhil Narayanan Nair home

Python - Variables

================

message = “What’s up, Doc?”

n = 17

pi = 3.14159

print(type(message))

print(type(n))

print(type(pi))