求最大的数 帮忙看看哪里不对
temp=input("输入3个数")x,y,z=temp,temp,temp
if x>y and x>z:
print(x+"最大")
elif y>x and y>z:
print(y+"最大")
else:
print(z+"最大")
这里我想将input输入的三个数放进一个temp【】里面但不知道怎么做 temp=
x,y,z=temp,temp,temp
if x>y and x>z:
print(x+"最大")
elif y>x and y>z:
print(y+"最大")
else:
print(z+"最大")
这样可以嘛 本帖最后由 WangJS 于 2020-4-27 16:21 编辑
试试这样
temp = []
print('输入一个数字按一次回车')
for i in range(3):
temp.append(input(''))
print(temp)
最终代码:
temp = []
print('输入一个数字按一次回车')
for i in range(3):
temp.append(int(input('')))
x,y,z=temp,temp,temp
if x>y and x>z:
print(x,"最大")
elif y>x and y>z:
print(y,"最大")
else:
print(z,"最大")
x, y, z = input('输入x、y、z(以空格隔开)').split()# 也可以以逗号隔开,此时.split(',')
if x > y and x > z:
print(x + "最大")
elif y > x and y > z:
print(y + "最大")
else:
print(z + "最大")
如果要放入列表中
temp = input('输入x、y、z(以空格隔开)').split()
print(type(temp))
此时的temp就是一个list split的用法,小甲鱼版
split(sep=None, maxsplit=-1) 不带参数默认是以空格为分隔符切片字符串,如果 maxsplit 参数有设置,则仅分隔 maxsplit 个子字符串,返回切片后的子字符串拼接的列表。
15588686105 发表于 2020-4-27 16:13
temp=
x,y,z=temp,temp,temp
if x>y and x>z:
def calc_com(x,y,z):
"""This is used for compare the three number you define """
if x>y and x>z:
print(x,"最大")
elif y>x and y>z:
print(y,"最大")
else:
print(z,"最大")
temp=input('输入x、y、z(以空格隔开):').split()
calc_com(*temp) #-*-coding:gbk-*-
x , y , z = map(int , input('输入3个数:') . split())
t = x if x > y and x > z else y if y > x and y > z else z
print('最大值是:' , t) 用split
在input后面加:
.split(,) #后面括号加分隔符 input函数输入的数据类型是字符串型需要用int函数强制转换
页:
[1]