我想知道Python中julia类型的“符号”的含义,因为我试图将我正在处理的代码从julia转换为Python。 谢谢
答案 0 :(得分:0)
intern(s)
函数可能会执行您想要的操作:
>>> help(intern)
Help on built-in function intern in module __builtin__:
intern(...)
intern(string) -> string
``Intern'' the given string. This enters the string in the (global)
table of interned strings whose purpose is to speed up dictionary lookups.
Return the string itself or the previously interned string object with the
same value.
>>>
答案 1 :(得分:0)
使用字符串代替。字符串不包含什么符号?