13 lines
133 B
Python
13 lines
133 B
Python
#!/usr/bin/env python
|
|
#-*- coding:utf-8 -*-
|
|
|
|
import math
|
|
|
|
def m2ft(m):
|
|
return m * 3.2808399
|
|
|
|
def ft2m(ft):
|
|
return ft / 3.2808399
|
|
|
|
|