__main__.py 389 B

123456789101112131415
  1. from airport_codes.get_info import req_geocode
  2. def main():
  3. # print('[{}] Hello world!'.format(time.strftime('%Y-%m-%d %H:%M:%S', time.localtime(time.time()))))
  4. # str = '188888'
  5. # n = len(str)
  6. # new_str = '****' if len(str) <= 4 else str[0:int(n/3)] + '****' + str[int(n*2/3):]
  7. # print(new_str)
  8. req_geocode();
  9. # 程序入口
  10. if __name__ == '__main__':
  11. main()