mirror of
https://github.com/CoderSherlock/CoderSherlock.github.io.git
synced 2026-06-12 23:58:11 -07:00
21 lines
249 B
Python
Executable File
21 lines
249 B
Python
Executable File
#!/usr/bin/python
|
|
|
|
import argparse
|
|
import os
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def main():
|
|
parser = argparse.ArgumentParser()
|
|
parser.add_argument("op")
|
|
parser.add_argument("type")
|
|
res = parser.parse_args()
|
|
print(res)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|