gpt4 book ai didi

python - 如何使用另一个脚本删除代码中的尾随空格?

转载 作者:IT老高 更新时间:2023-10-28 20:22:21 24 4
gpt4 key购买 nike

类似:

import fileinput

for lines in fileinput.FileInput("test.txt", inplace=1):
lines = lines.strip()
if lines == '': continue
print lines

但标准输出上没有打印任何内容。

假设有一个名为 foo 的字符串:

foo.lstrip() # to remove leading white space
foo.rstrip() # to remove trailing whitespace
foo.strip() # to remove both lead and trailing whitespace

最佳答案

fileinput 似乎适用于多个输入流。这就是我会做的:

with open("test.txt") as file:
for line in file:
line = line.rstrip()
if line:
print(line)

关于python - 如何使用另一个脚本删除代码中的尾随空格?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5411603/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com