作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
示例:我输入正数:1、2、3、4,然后输入 -1 结束第一个函数。第二个函数中显示的列表(nlist)为['1', '2', '3', '4', '']。这个额外的第五项从哪里来?我该如何防止它?
def pos_num():
# Open num.txt and define num
num_list = open('num.txt', 'w')
num = 1
# While num is positive, ask user for input
while num >= 0:
num = int(input('Type + number to add to num_list, - number to end: '))
# If user input is positive: \
# convert to str, add to list, convert to int to continue loop
if num >= 0:
num = str(num)
num_list.write(num + '\n')
num = int(num)
# If user input is negative: \
# close num.txt and inform user
else:
num_list.close()
print('List has been written to num.txt')
# Call program 1
pos_num()
# Program 2: Number File Reader
def nfread():
# Ask user for filename to open
filename = input('Filename: ')
infile = open(filename, 'r')
# Create empty list
nlist = []
# Read first line, strip '\n', append to nlist, begin line count
line = infile.readline()
line = line.rstrip('\n')
nlist.append(line)
count = 1
# While line is not empty: \
# read line, strip '\n', append line to nlist, add 1 to count
while line != '':
line = infile.readline()
line = line.rstrip('\n')
nlist.append(line)
count += 1
print(line, count)
# Close num.txt
infile.close()
# Return nlist
return nlist
最佳答案
考虑更改此 block :
# Read first line, strip '\n', append to nlist, begin line count
line = infile.readline()
line = line.rstrip('\n')
nlist.append(line)
count = 1
# While line is not empty: \
# read line, strip '\n', append line to nlist, add 1 to count
while line != '':
line = infile.readline()
line = line.rstrip('\n')
nlist.append(line)
count += 1
print(line, count)
类似的事情
count = 0
for line in infile:
line = line.rstrip()
if line:
nlist.append(line)
count += 1
print(line, count)
在所有更改中,应该修复您的程序的更改是添加 if line:
——它将导致您的程序不向您的程序附加一个空元素。列表(仅对换行符调用 .rstrip()
的结果)。
关于python - 当我只需要向用户添加的行时,为什么它会在 nlist 中记录额外的项目/行( ' ' )?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53051452/
我通过编译另一个程序制作了exe文件(d.out)。 nlist 函数总是返回-1。 fopen 函数返回 !=null。如果重要的话我会像这样编译我的程序gcc -I/usr/include mai
我只是想知道 Linux 中是否有一个相当于 Novels nlist() 的函数。 nlist()执行以下操作: 调用 nlist() 的特权进程应注意意外文件被替换为操作数的可能性。 nlist(
我需要从 SFTP 服务器获取文件,但我只需要扩展名为 txt 的文件。如果我循环结果并在本地使用 PHP 进行过滤,则需要花费太多时间。我如何使用 nlist 做到这一点? 我的代码是: $time
示例:我输入正数:1、2、3、4,然后输入 -1 结束第一个函数。第二个函数中显示的列表(nlist)为['1', '2', '3', '4', '']。这个额外的第五项从哪里来?我该如何防止它? d
我是一名优秀的程序员,十分优秀!