快速发布:下面的代码片段给我键入错误:
“ TypeError:tzNameAt缺少1个必需的位置参数:'longitude'”
from tzwhere import tzwhere
TimeZone = tzwhere.tzwhere.tzNameAt(37.3880961, -5.9823299)
有什么想法吗?
最佳答案
从docs:
>>> from tzwhere import tzwhere
>>> tz = tzwhere.tzwhere()
>>> print tz.tzNameAt(37.3880961, -5.9823299)
关于python - Python tzwhere-tzNameAt缺少1个必需的位置参数,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/48960721/