...? :)
l=[1,2]
l+="le" # convert the string to elements of list
# [1,2,"l","e"]
l2=[]
l2=l2+"le" # error
https://stackoverflow.com/a/2347423
Обсуждают сегодня