.append如何在Python 2中运行?

时间:2018-03-03 08:34:46

标签: python

lword = (bword.lower())
word = str(lword)
spaces = []
for spaces in word:
  if spaces == ' ':
      spaces.append (' ')
  else:
      spaces.append('_')
print (spaces)

如果它在Python 2.7中,它会如何?

0 个答案:

没有答案