-1

我的代码有问题,运行时出现语法错误“打印”

word1 = input("Words: ")
characters = len(word1)
listOfStuff = str(word1)
strip = ""
x = 1
while not characters > 140 - 11:
    word = input("Words: ")
    if characters <= 140 - 11:
        listOfStuff = listOfStuff + ' ' + str(word)
        characters = characters + len(word) - 1
    elif characters > 140 - 11:
        strip = len(word)
        break
finalLength = len(listOfStuff)
print(listOfStuff.rstrip(strip)
print(finalLength)

我什么时候做错了?

4

2 回答 2

5

你错过了一个右括号:

print(listOfStuff.rstrip(strip)
#                      --------^
于 2013-08-29T08:54:05.690 回答
1

如果您正在使用

Python2.x

1)您可能想使用

raw_input("Words: ")

代替

input("Words: ")

2)print不期望括号

print listOfStuff.rstrip(strip)
print finalLength

Python3

1) Martijn Pieters 的回答很好。您缺少右括号

print(listOfStuff.rstrip(strip))

代替

print(listOfStuff.rstrip(strip)
于 2013-08-29T09:11:59.443 回答