python 逻辑与运算符是 and
关键字,而非像其他语言中的 &&
。
示例
latitude = ctx_dict['latitude']
longitude = ctx_dict['longitude']
if -90 <= latitude <= 90 and -180 <= longitude <= 180:
geohash.encode(latitude, longitude, precision=6)
python 逻辑与运算符是 and
关键字,而非像其他语言中的 &&
。
latitude = ctx_dict['latitude']
longitude = ctx_dict['longitude']
if -90 <= latitude <= 90 and -180 <= longitude <= 180:
geohash.encode(latitude, longitude, precision=6)