gpt4 book ai didi

python - 如何计算文件中的字符数(不使用 len 函数)?

转载 作者:行者123 更新时间:2023-11-30 23:31:10 25 4
gpt4 key购买 nike

基本上,我希望能够计算 txt 文件中的字符数(用户输入文件名)。我可以让它显示文件中有多少行,但不显示有多少字符。我没有使用 len 函数,这就是我所拥有的:

def length(n):
value = 0
for char in n:
value += 1
return value
filename = input('Enter the name of the file: ')
f = open(filename)
for data in f:
data = length(f)
print(data)

最佳答案

您需要做的就是将每行中的字符数相加(data):

total = 0
for line in f:
data = length(line)
total += data
print(total)

关于python - 如何计算文件中的字符数(不使用 len 函数)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20132320/

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