Python:用“/”斜杠符号分割字符串

Python: Split a string by "/" slash symbol

我有一个 lat/lng 字符串:

"31.20/121.36"

如何用“/”符号分割?

您可以使用 .split() 函数将其分成两部分并将它们插入到列表中。

text = "31.20/121.36"

print(text.split("/"))

这输出 ['31.20', '121.36'].