在python中使用for循环打印几个字符串

MT3*_*T32 1 python for-loop python-3.x

我试图在Python 3.7中的print语句中申请循环.

例如

string1="Liverpool is always alone"
string2="Manchester United is the best team in the world"
string3="Tottenham Hotspur is for losers"
string4="Leicester City is overrated"

for i in range(1,5):
    print(string%i.find(" is"))  # <---this is the problem
Run Code Online (Sandbox Code Playgroud)

我的最终目标是获得

9
17
17
14
Run Code Online (Sandbox Code Playgroud)

当然,我可以将结果存储在列表中,然后打印结果如下:

 results=[string1.find(" is"),
          string2.find(" is"),
          string3.find(" is"),
          string4.find(" is")]

    for i in range(1,4):
        print(results[i])
Run Code Online (Sandbox Code Playgroud)

但是当字符串的数量变得太多时,它会很麻烦.

请建议使用for循环打印多个字符串的方法.

我正在使用Python 3.7.

Joh*_*don 6

将字符串放在一个列表中:

statements = [
    "Liverpool is always alone",
    "Manchester United is the best team in the world",
    "Tottenham Hotspur is for losers",
    "Leicester City is overrated",
]
Run Code Online (Sandbox Code Playgroud)

然后你可以轻松地循环它们:

for s in statements:
    print(s.find(" is"))
Run Code Online (Sandbox Code Playgroud)