import sys for arg in sys.argv[1:]: try: f = open(arg, 'r') except FileNotFoundError: print('找不到檔案', arg) else: with_file(f, ...
確定! 回上一頁