Zhengshuai PENG

A Small Developer

python

» python

Articles by category: python


others linux clojure cpp java leetcode oracle_db cs-fundamental algorithm regex data_structure design_pattern network web spring mysql sword_to_offer git mac elk
2018
17 Apr 2018

[Python] Search file in a given path

I. Search file in a give path by using python Sometimes we need to process files in a server(Linux env)....

16 Apr 2018

[Python] 根据经纬度坐标计算两点间距离

I. 根据经纬度坐标计算两点间距离 这是一个小的python脚本来计算两个已经纬度来计算两点之间的经纬度距离,距离输出单位为 米 m #! python2 # -*- coding:utf-8 -*- import sys from math import sin, cos, sqrt, atan2,...