我正在尝试在 python 中定义一个函数来替换字符串中的某些项目。我的字符串是一个包含度分秒的字符串(即 216-56-12.02)
我想替换破折号以便获得正确的符号,所以我的字符串看起来像 216° 56' 12.02"
我试过这个:
def FindLabel ([Direction]):
s = [Direction]
s = s.replace("-","° ",1) #replace first instancwe of the dash in the original string
s = s.replace("-","' ") # replace the remaining dash from the last string
s = s + """ #add in the minute sign at the end
return s
这似乎不起作用。我不确定出了什么问题。欢迎任何建议。
干杯,迈克