第5课
Posted w11111111111
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第5课相关的知识,希望对你有一定的参考价值。
a= ["23", 34, 56,"print", None] b = int(a[0]) + a[2] print(b) import random a= ["print","input", "while", "if", "else", "break","continue"] while True: index = random. randint(0,6) print(a[index]) a = ["print", "input","while", "if", "else", "break","continue"] tmp = a[1] a[1] = a[5] a[5] = tmp print(a) bug
以上是关于第5课的主要内容,如果未能解决你的问题,请参考以下文章