可以看到,列表中的元素存在着首尾空格。这些空格可能是由于数据输入或处理错误导致的。我们希望将这些空格去除,得到如下的列表: names=['Alice','Bob','Charlie'] 1. 2. 解决方案 要解决这个问题,我们可以使用 Python 的字符串方法strip()。strip()方法可以去除字符串中的首尾空格。我们可以通过对列表中的每个元素...
#去除空格并显示列表中以k或者K开头,e结尾的元素 li=['Kobe ',' Michale ',' kame','Durant ','kyn'] for i in li: new_i=i.strip() if (new_i.startswith('k') or new_i.startswith('K')) and new_i.endswith('e'): print(new_i)...
python去掉列表中的空格 python去除列表元素中的空格 test = ['', 'ttt\n ', "123"] test = [x.strip() for x in test if x.strip() != ''] print(test) 本文章为转载内容,我们尊重原作者对文章享有的著作权。如有内容错误或侵权问题,欢迎原作者联系我们进行内容更正或删除文章。