while 循环嵌套
print 结尾处理# 在默认情况下, print函数输出内容后,会自动在内容末尾增加换行
print("*", end="")
print("*")
输出结果为**
循环嵌套演练# 打印如下内容
'''
*
**
2020-04-14