因此,这些元素将处于较低的情况下,列表中的空间替换为下划线'_'
我尝试了:
names = ["Joey Tribbiani", "Monica Geller", "Chandler Bing", "Phoebe Buffay"]
usernames = []
for i in names:
usernames = usernames.append(i.replace(" ", "_"))
print(usernames)
出现了这个错误:
---------------------------------------------------------------------------
AttributeError Traceback (most recent call last)
<ipython-input-96-513b68e18689> in <module>
4 # write your for loop here
5 for i in names:
----> 6 usernames = usernames.append(i.replace(" ", "_"))
7
8
AttributeError: 'NoneType' object has no attribute 'append'
出现错误,因为您使用了错误的语法。 应该是
usernames = usernames.append