10 lines
187 B
Python
10 lines
187 B
Python
"""Python module to test drone builds"""
|
|
|
|
import sys
|
|
|
|
from _circle_area import circle_area
|
|
|
|
if __name__ == '__main__':
|
|
for arg in sys.argv[1:]:
|
|
print(circle_area(float(arg)))
|