"TypeError: can only concatenate str (not "list") to str" 为什么我会看到这个错误?

时间:2021-03-16 18:03:59

标签: python string datetime utc re

from datetime import datetime, timedelta
from pytz import timezone
import pytz
import re
while True:

    times=['Brazil','Hongkong','Australia','Mexico','US','Poland','Singapore','Portugal','Japan','Israel']
    use=[times[0],times[2],times[3],times[4]]
    print(r" enter the time zone that you want to watch ")
    o=input(f"{times}\n").lower()
    e=list(o)
    if  e=='us'or e=='usa' or e=='united state' or e=='untied states of america':
        uy=list(e)
        uy.remove(e[2:])
    else:
         mn=e[0].upper()+e[1:]
         if mn not in times:
             print("you need to enter time zone")
             continue
         else:
              if mn and uy in use:
              for i in  re.findall(f'^{mn}'|f'{uy}',pytz.all_timezones):
                  u=list(re.findall(f'^{mn}'|f'{uy}',pytz.all_timezones))
                  if u[i]=='/':
                      u.remove(u[0:i])
                      print(u)

你好!我正在尝试创建一个代码,让我回到世界上不同的时区!虽然还没有完成,我还处于开始阶段,但我不明白为什么向我显示这个错误出现在我看来 错误:

TypeError: can only concatenate str (not "list") to str

请不要点击“这个问题没有用”的标志它对我没有帮助,我请你宽容,如果你不明白的东西写在评论中,我会尽力纠正

1 个答案:

答案 0 :(得分:1)

你有:

e=list(o)

永远不会被 if 语句捕获,因为它是一个列表,而不是一个字符串。然后在下面您尝试将字符串添加到列表中,因此类型错误。

mn=e[0].upper()+e[1:]

粗略一看,我认为您根本不希望输入转换。

更改这两行:

o=input(f"{times}\n").lower()
e=list(o)

没有转换:

e=input(f"{times}\n").lower()