在 python 中有什么方法不会改变列表的元素。
例如,整数必须保持整数,字符串必须保持字符串,但这应该在同一个程序中完成。
示例代码将是:
print("Enter the size of the list:")
N = int(input())
for x in range(N):
x = input("")
the_list.append(x)
the_list.sort()
print(the_list)
结果:the_list = ['1','2','3']
是整数已转换为错误字符串的整数列表。
但是列表的字符串必须是字符串。