定义字符串变量
str1 = 'Hello world!'
str2 = "Hello world!"
print('str1的类型为:' , type(str1), ', str1的值为:', str1)
print('str2的类型为:' , type(str2), ', str2的值为:', str2)
运行结果:
str1的类型为: <class 'str'> , str1的值为: Hello world!
str2的类型为: <class 'str'> , str2的值为: Hello world!
定义数字变量
num1 = 123
num2 = 123.456
print('num1的类型为:' , type(num1), ', num1的值为:', num1)
print('num2的类型为:' , type(num2), ', str2的值为:', num2)
运行结果:
num1的类型为: <class 'int'> , num1的值为: 123
num2的类型为: <class 'float'> , str2的值为: 123.456
定义布尔变量
bool1 = True
bool2 = False
print('bool1的类型为:' , type(bool1), ', bool1的值为:', bool1)
print('bool2的类型为:' , type(bool2), ', bool2的值为:', bool2)
运行结果:
bool1的类型为: <class 'bool'> , bool1的值为: True
bool2的类型为: <class 'bool'> , bool2的值为: False
|