gpt4 book ai didi

python - 使用 Python 三元条件运算符执行多个操作

转载 作者:太空宇宙 更新时间:2023-11-03 19:40:18 24 4
gpt4 key购买 nike

这个简单的程序从文本文件中读取单词列表,并将子列表写入另一个文件,其中包含子列表的“总单词数”计数:

wordList = readFile.read().split(', ')
totalWords = 0

for word in wordList:
if ('e' in word):
writeFile.write(word + '\n')
totalWords += 1

writeFile.write("Total words: " + str(totalWords))
readFile.close()
writeFile.close()

使用Python的三元条件:

for word in wordList:
writeFile.write(word + '\n') if ('e' in word) else 'false'

我想知道是否有一种方法可以在单个三元条件中执行写入操作并增加totalWords。我还想知道,是否有更合适的方法来处理 else 条件,而不是使用“false”或 None,因为我们只是跳过不满足条件的单词?提前致谢。

最佳答案

您无法使用单个三元语句(一个行)真正执行写入操作并增加totalWords。您已经正确实现了代码,无需修改您的代码。

如果你想增强代码,可以使用with复合语句,如下,

with open('read_filename', 'r') as readFile, open('write_filename', 'w') as writeFile:
wordList = readFile.read().split(', ')
totalWords = 0

for word in wordList:
if ('e' in word):
writeFile.write(word + '\n')
totalWords += 1

writeFile.write("Total words: " + str(totalWords))

关于python - 使用 Python 三元条件运算符执行多个操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60465359/

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