无限循环如果条件判断语句永远为true,循环将会无限的执行下去,如下实例: #!/usr/bin/python # -*- coding: UTF-8 -*- var = 1 while var == 1 : # 该条件永远 ...
確定! 回上一頁