15588686105 发表于 2020-4-27 16:10:42

求最大的数 帮忙看看哪里不对

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【】里面但不知道怎么做

15588686105 发表于 2020-4-27 16:13:32

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:14:35

本帖最后由 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,"最大")

March2615 发表于 2020-4-27 16:25:55

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

WangJS 发表于 2020-4-27 16:29:34

split的用法,小甲鱼版

split(sep=None, maxsplit=-1) 不带参数默认是以空格为分隔符切片字符串,如果 maxsplit 参数有设置,则仅分隔 maxsplit 个子字符串,返回切片后的子字符串拼接的列表。


heidern0612 发表于 2020-4-27 16:33:03

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)

jackz007 发表于 2020-4-27 16:33:17

#-*-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)

xiaosi4081 发表于 2020-4-27 16:35:05

用split
在input后面加:
.split(,) #后面括号加分隔符

IG_theshy 发表于 2020-4-27 16:38:42

input函数输入的数据类型是字符串型需要用int函数强制转换
页: [1]
查看完整版本: 求最大的数 帮忙看看哪里不对