diff --git a/Day01-15/07.字符串和常用数据结构.md b/Day01-15/07.字符串和常用数据结构.md index 57127b3..8e1400a 100644 --- a/Day01-15/07.字符串和常用数据结构.md +++ b/Day01-15/07.字符串和常用数据结构.md @@ -669,7 +669,7 @@ def main(): begin = False turn = 'x' counter = 0 - os.system('clear') + os.system('cls') print_board(curr_board) while counter < 9: move = input('轮到%s走棋, 请输入位置: ' % turn) @@ -680,7 +680,7 @@ def main(): turn = 'o' else: turn = 'x' - os.system('clear') + os.system('cls') print_board(curr_board) choice = input('再玩一局?(yes|no)') begin = choice == 'yes' @@ -690,4 +690,4 @@ if __name__ == '__main__': main() ``` ->**说明:** 最后这个案例来自[《Python编程快速上手:让繁琐工作自动化》](https://item.jd.com/11943853.html)一书(这本书对有编程基础想迅速使用Python将日常工作自动化的人来说还是不错的选择),对代码做了一点点的调整。 \ No newline at end of file +>**说明:** 最后这个案例来自[《Python编程快速上手:让繁琐工作自动化》](https://item.jd.com/11943853.html)一书(这本书对有编程基础想迅速使用Python将日常工作自动化的人来说还是不错的选择),对代码做了一点点的调整。