数据类型
<pre>通过 type()函数, 可以查看变量值的数据类型.
"""
# 1. 定义变量a, b, c, d, 分别存储上述的4种值.
a = 10
b = 10.3
c = True
d = '刘亦菲'
e = "胡歌"
# 细节: 多行字符串, 必须写成 三引号形式, 单双引号均可.
f = """
select
*
from
student;
"""
# 2. 打印上述的变量值.
print(a)
print(b)
# 3. 细节, Python独有写法, 同时输出多个变量值.
print(a, b, c, d, e)
print(f) # 发现: 三引号会保留字符串格式.
# 4. 通过 type()函数, 可以查看变量值的数据类型.
# 格式: type(变量名 或者 变量值)
print(type(20)) # <class 'int'>
print(type(a))# <class 'int'>
print(type(b))# <class 'float'>
print(type(c))# <class 'bool'>
print(type(d))# <class 'str'>
<code>
页:
[1]