包含列表+字符串的新列表

时间:2019-02-26 09:41:55

标签: python string python-2.7 list

如何制作包含现有列表和新字符串的新列表?

Const1 = "1000"
Const2 = "2000"
Const3 = "3000"
CONST_LIST = [Const1, Const2]
CONST_LIST_NEW = [CONST_LIST] + Const3 #Nogo
print CONST_LIST_NEW

希望输出..... ['1000','2000','3000']

1 个答案:

答案 0 :(得分:0)

如果您看到解释程序给您的错误,您将看到一个TypeError:false

因此,您需要连接两个列表,并且由于CONT_LIST已经是一个列表,因此不需要在方括号周围。但是您的字符串需要在新列表中,因此只需输入HKEY_USERS\.DEFAULT\Control Panel\Desktop

最后看起来像这样:

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