python入门题
每天五题练习
本文章记录了python经典编程题目,初学者必须要学会哦
实例 021:
题目:⾸先由计算机产⽣⼀个[1,100]之间的随机整数,然后由⽤户猜测所产⽣的随机数。根据⽤户猜测的情况给出不同提示,如猜测的数大于产⽣的数,则显示“High”,小于则显示“Low”,等于则显示“You won !”,游戏结束。⽤户最多可以猜7次,如果7次均未猜中,则显示“You lost !”,并给出正确答案,游戏结束。游戏结束后,询问⽤户是否继续游戏,选择“Y”则开始⼀轮新的猜数游戏;选择“N”则退出游戏。
chose = 'y'
while chose=='Y' or chose=='y':
import random
num = random.randint(1,100)
def judge(b):
if b == num:
return 1
else:
return 0
for i in range(1,8):
b=eval(input('请输入您第{}次所猜的整数:'.format(i)))
if judge(b)==1:
print("You won !")
break
elif b > num:
print("high")
elif b < num:
print("low")
if judge(b)==0:
print("You lost !")
chose=input('请输入Y(y)继续进行游戏,N(n)退出游戏:')
while chose != 'Y' and chose != 'y' and chose != 'N' and chose != 'n':
print('输入有误,请重新输入Y(y)继续进行游戏,N(n)退出游戏:',end = '')
chose=input()
实例 022:
题目:编写一个函数,该函数可以输⼊任意多个数,函数返回输出所有输⼊参数的最⼤值、最⼩值和平均值。
import numpy as py
x=input('请输入一组数并用空格隔开:')
def f(x):
lis =list(x.split(' '))
for i in range(len(lis)):
lis[i]=eval(lis[i])
print('该组数值的最大值为:',max(lis))
print('该组数值的最小值为:',min(lis))
print('该组数值的平均值为:',py.mean(lis))
f(x)
实例 023:
题目:⼀个⼈赶着鸭⼦去每个村庄卖,每经过⼀个村⼦卖去所赶鸭⼦的⼀半⼜⼀只。这样他经过了七个村⼦后还剩两只鸭⼦,问他出发时共赶多少只鸭⼦?
def f(n):
if n == 8:
return 2
else:
sum = f(n+1)*2+2
return sum
print('⼀共有{}只鸭子'.format(f(1)))
实例 024:
题目:输入某个化学物质的分子式(只含H、O、C),求摩尔质量?
H = eval(input("Enter the number of 'H':"))
C = eval(input("Enter the number of 'C':"))
O = eval(input("Enter the number of 'O':"))
totalmolecular = 1.00794 * H + 12.0107 * C + 15.9994 * O
print("The total molecular is:", totalmolecular, "克/摩尔", ",the expression is:"'H', H, 'C', C, 'O', O)
实例 025:
题目: 数字加密游戏,编程程序,从键盘任意输⼊1个4位数,将该数字中的每位数与7相乘,然后取乘积结果的个位数对该数字进⾏替换,最后得到1个新的4位数。
n = int(input('任意输入1个4位数:'))
if 1000<=n<=9999:
a=n%10
b=(n-a)%100/10
c=(n-a-10*b)%1000/100
d=(n-a-10*b-100*c)%10000/1000
a=a*7%10
b=b*7%10
c=c*7%10
d=d*7%10
n=1000*d+100*c+10*b+a
print(int(n))
elif n<=1000 or n>=9999:
print("您输入的数字不符合要求,请输入⼀个四位数字")
今天的任务完成啦~
明天继续加油~冲冲冲!