python基础—python6种基本数据类型及数据类型之间转换
Python 中的六种基本数据类型包括:
int
整数float
浮点数bool
布尔值,True 或 Falsestr
字符串,以单引号(')、双引号(")、三引号('''或"")包裹list
列表,以方括号([])包裹,元素可以修改tuple
元组,以圆括号(())包裹,元素不可修改
数据类型之间的转换主要有以下方法:
int()
将其他数据类型转换为整数float()
将其他数据类型转换为浮点数bool()
将其他数据类型转换为布尔值str()
将其他数据类型转换为字符串list()
将其他数据类型转换为列表tuple()
将其他数据类型转换为元组
下面是各种转换的实例代码:
# 数值转字符串
num_to_str = str(123)
print(num_to_str, type(num_to_str)) # 输出: '123' <class 'str'>
# 字符串转整数
str_to_int = int("123")
print(str_to_int, type(str_to_int)) # 输出: 123 <class 'int'>
# 字符串转浮点数
str_to_float = float("123.45")
print(str_to_float, type(str_to_float)) # 输出: 123.45 <class 'float'>
# 整数转浮点数
int_to_float = float(123)
print(int_to_float, type(int_to_float)) # 输出: 123.0 <class 'float'>
# 其他数据类型转布尔值
print(bool(0), bool(""), bool(None), bool([]), bool(())) # 输出: False False False False False
# 字符串转列表
str_to_list = list("hello")
print(str_to_list, type(str_to_list)) # 输出: ['h', 'e', 'l', 'l', 'o'] <class 'list'>
# 列表转字符串
list_to_str = ''.join(['h', 'e', 'l', 'l', 'o'])
print(list_to_str, type(list_to_str)) # 输出: hello <class 'str'>
# 列表转元组
list_to_tuple = tuple([1, 2, 3])
print(list_to_tuple, type(list_to_tuple)) # 输出: (1, 2, 3) <class 'tuple'>
# 元组转列表
tuple_to_list = list((1, 2, 3))
print(tuple_to_list, type(tuple_to_list)) # 输出: [1, 2, 3] <class 'list'>
以上代码展示了如何在不同数据类型之间进行转换,注意转换为布尔值时,0
, ""
, None
, []
, ()
都会被转换为 False
,其余值都转换为 True
。
评论已关闭