測資內包含錯誤指令,一旦程式讀到錯誤指令,應輸出錯誤資訊並直接退出程式,不再繼續執行後續的內容
這效果本應該用類似像 python 的 raise 做的,不過在這裡用 raise 無疑是挖坑給自己跳,餵自己吃 RE
raise
如果有興趣的話,可以玩玩看,當你的程式讀到不存在的指令時,用 raise 或 assert 返回錯誤,像這樣
assert
commands = set() # 合法指令集comm = 'insert leftalice'if comm not in commands: raise SyntaxError(f'invalid command {comm}')# 或用 assert 寫assert(comm not in commands, f'invalid command {comm}')
送答案時不要真的在答案裡面這樣寫啊