python 将一个列表的名字转换为字符
时间: 2023-05-24 14:03:43 浏览: 68
串,可以使用str()函数,例如:
```
my_list = [1, 2, 3, 4, 5]
list_name = "my_list"
str_list = str(list_name)
print(str_list)
```
输出结果为:
```
'my_list'
```
注意,转换后的字符串包含引号。如果要去掉引号,可以使用字符串切片或replace()函数等方法进行处理。
阅读全文