python 处理文本,格式化文本~
发布网友
发布时间:2022-04-26 09:09
我来回答
共2个回答
懂视网
时间:2022-05-10 11:16
本篇文章主要是给大家分享了关于Python基础中的文本格式化,方法也是挺详细的,有需要的朋友可以看一下
1.Python文本格式化
Python 3.0的版本中,input语句默认输入字符串(即使输入数字也会被当作字符串),强制转换成数字:age=int(input(“input your age:”))
Python2.7中input和raw_input:
Python3.5中input,没有raw_input函数:
1.1 方法一
%s----引用字符串、数字 %d----整数 %f----浮点数 %x----十六进制整数
在需要格式化的位置用 %s 代替,语句末尾加上 %( ),括号里面直接填写内容(字符串加引号,用逗号分割),如果只有一个内容,可以省略括号。
程序:
输出:
2.2 方法二
floor,ceil函数--取整(如32.9取为32.0或33.0)
程序:
输出:
程序:
输出:
相关推荐:
python基础教程之文件操作实现全文或单行替换的方法
Python基础入门--区块链
python基础入门级操作总结
热心网友
时间:2022-05-10 08:24
#coding=utf-8
records = []
record = {}
with open("data.txt") as f:
while True:
line = f.readline()
if not line:
if len(record)!= 0: records.append(record)
break
field = line[line.find(":") + 1:].strip()
if line.startswith("ScopeId"):
if len(record)!= 0: records.append(record)
record = {}
record["ScopeId"] = field
elif line.startswith("Name"):
record["Name"] = field
elif line.startswith("Free"):
record["Free"] = field
elif line.startswith("InUse"):
record["InUse"] = field
elif line.startswith("PercentageInUse"):
record["PercentageInUse"] = field
# 设置缺省项
for r in records:
r.setdefault("InUse", 0)
r.setdefault("PercentageInUse", 0)
r.setdefault("Name", "")
r.setdefault("Free", 0)
print records