我的自定义类的简要版本,该类读取.txt文件并相应地返回输出。
class MyClass:
def some_method(self, arg1, arg2):
pass
我需要以这种形式提供解决方案,这是我的main.py
文件
def main():
input_file = sys.argv[1]
# parse the file and process the command
# print the output
if __name__ == "__main__":
main()
我需要从sys.argv[1]
中读取文件。
CLI应该像这样工作:
python -m main <absolute_path_to_input_file>
我不知道该如何处理?