某些输出未显示或显示为“无”

时间:2017-01-17 08:31:20

标签: python python-3.x

我的代码是:

t = int(input())
nentry = int(input())
def nitems():
    for number in range(nentry):
        items = input()[:10] * number       
        print(items)

n = nitems()

我的代码是这样的:

输入

2
2
Foo
Bar

输出

(Blankspace)
 Bar 
(Blankspace)

我希望输出为:

Foo
Bar

0 个答案:

没有答案