Python 练习实例88
题目:读取7个数(1—50)的整数值,每读取一个值,程序打印出该值个数的*。
程序分析:无。
实例
#!/usr/bin/python
# -*- coding: UTF-8 -*-
if __name__ == '__main__':
n = 1
while n <= 7:
a = int(raw_input('input a number:\n'))
while a < 1 or a > 50:
a = int(raw_input('input a number:\n'))
print a * '*'
n += 1
以上实例输出结果为:
input a number: 9 ********* input a number: 5 ***** input a number: 6 ****** input a number:
yanice
672***[email protected]
参考方法:
yanice
672***[email protected]
掷骰子
fxy***[email protected]
Python3 下测试实例:
掷骰子
fxy***[email protected]
pjdssjdcr
735***[email protected]
参考方法:
pjdssjdcr
735***[email protected]
tiantian
120***[email protected]
参考方法:
tiantian
120***[email protected]