如何用python打印菱形

avatar
作者
筋斗云
阅读量:0

在Python中,可以使用嵌套循环来打印菱形

def print_diamond(size):     if size % 2 == 0:         size += 1      for i in range(size):         if i <= size // 2:             spaces = size // 2 - i             stars = 2 * i + 1         else:             spaces = i - size // 2             stars = 2 * (size - i) - 1         print(" " * spaces, end="")         print("*" * stars, end="")         print(" " * spaces)  size = int(input("请输入菱形的大小(正整数):")) print_diamond(size) 

这个函数首先检查给定的大小是否为奇数,如果不是,则将其增加1。然后,它使用两个嵌套循环来打印菱形的上半部分和下半部分。每行的空格和星号数量根据当前行数计算得出。最后,通过调用print_diamond()函数并传递一个整数参数来打印菱形。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!