Update 07.字符串和常用数据结构.md

大佬 前面您改成了cls  后面这两个没改
pull/606/head
Aleze58 2020-06-06 20:48:45 +08:00 committed by GitHub
parent 3ef372196c
commit 6b0b8ea73c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -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将日常工作自动化的人来说还是不错的选择对代码做了一点点的调整。
>**说明:** 最后这个案例来自[《Python编程快速上手:让繁琐工作自动化》](https://item.jd.com/11943853.html)一书这本书对有编程基础想迅速使用Python将日常工作自动化的人来说还是不错的选择对代码做了一点点的调整。