标签: python list
如何使用int的字符串值命名列表? 示例伪代码:
int i = 4; list + i = [] // i want the name of the list to be thus 'list4'
答案 0 :(得分:0)
首先,你没有在python中声明变量类型,所以i = 4工作得很好,也就是单词" list"在python中保留,所以尽量不要使用可能与python内置插件冲突的单词。如果你真的需要这样做(我不推荐),你可以通过eval()
i = 4
eval()