标签: python string
说
x = pandas.DataFrame(something) y = ['x']
我想制作
z = {i: notstr(i) for i in y}
输出
z = {'x': pandas.DataFrame(something)}
这会是什么&{39; notstr()'功能是什么?如何使一个字符串不再是一个字符串而是一个变量? str()中Python的反义词是什么?注意:显然在现实生活中,我的变量x and y要复杂得多。
notstr()
str()
Python
x and y