- 分享
暑假笔记
- 2024-7-17 20:32:39 @
20240716 split() 方法
字符串分割
str = "I am symo"
lst = str.split()
a,b,c = lst # 解构
a,b,c = str.split() print(a,b,c , sep='\n')
20240717 输入与输出 IPO input(输入) -> process(Processing处理) -> output(输出)
Python中的输入与输出 input() 无参调用 input() 含参调用 input('文本提示') 获取得的数据都是文本,而且一整行内容(包含空格)
split() 文本分割 (用途)
分割符 包含 : 空格、回车(换行符)、 \t(制表符)
无参调用 split()
含参调用 split('分割符')
print() print(对象a,对象b, 。。。 ,对象n)
输出的对象之间默认使用“空格”间隔,可以使用sep=""进行替换_Nonnull
print("文本提示整型%d,浮点%f,浮点格式化%.wf"%(a,b,c))
数据类型转换
int()
str()
float()
Edited 7 views
Unstar Topic
Report
2 comments
0 条评论
目前还没有评论...