码迷,mamicode.com
首页 > 编程语言 > 详细

【Python】【demo实验24】【练习实例】【打印图样】

时间:2019-10-03 16:22:37      阅读:84      评论:0      收藏:0      [点我收藏+]

标签:输出   dem   src   color   class   mda   tps   inpu   tty   

原题:

打印出如下图案(菱形):

   *
  ***
 *****
*******
 *****
  ***
   *

 

我的源码:

#!/usr/bin/python
# encoding=utf-8
# -*- coding: UTF-8 -*-

#  打印以下图案:
#   *
#  ***
# *****
#*******
# *****
#  ***
#   *

x = int(input("please input the number:\n"))    # *最多的一行的*个数

for i in range(1,x+1):
    print((x+1-i)*" ",end="")
    print((2*i - 1)*"*")
for i in range(x-1,0,-1):
    print((x+1-i)*" ",end="")
    print((2*i - 1)*"*")

 

 

 

输出结果:

技术图片

 

 

 

原题给出的方法:

 

技术图片

 

 

 

 

 


————————(我是分割线)————————

参考:

1. RUNOOB.COM:https://www.runoob.com/python/python-exercise-example23.html

 

 

备注:

初次编辑时间:2019年10月3日15:38:37

环境:Windows 7   / Python 3.7.2

【Python】【demo实验24】【练习实例】【打印图样】

标签:输出   dem   src   color   class   mda   tps   inpu   tty   

原文地址:https://www.cnblogs.com/kaixin2018/p/11619873.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!