📜  python代码示例中的变量

📅  最后修改于: 2022-03-11 14:46:05.782000             🧑  作者: Mango

代码示例6
#creating variable in python

a = 15 #it is called integer

b = 'apple' #any word or number written in this "" is called string

c = False #True or False is called boolean

d = 2.45 #any number with point is called float

print(a)
print(b)
print(c)
print(d)

#it will print all the values