15 lines
189 B
Python
15 lines
189 B
Python
import sys
|
|
import numpy
|
|
|
|
|
|
def main():
|
|
print("hello world!")
|
|
print(sys.argv)
|
|
_, out = sys.argv
|
|
with open(out, 'w') as f:
|
|
pass
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|