#! /usr/bin/python3 #-*- coding:UTF-8 -*- num = 0 while num < 3: print (f"{num} 小于 3") num += 1 else: print (f"{num} 大于或等于 3") print("结束循环!")