#24453: Python 一行解


71087@stu.cchs.chc.edu.tw (~ pythOnia ChallengeR ~)

學校 : 精誠中學
編號 : 125595
來源 : [114.42.225.61]
最後登入時間 :
2021-07-25 11:13:57
d065. 三人行必有我師 (1 行版) -- 板橋高中教學題 | From: [114.42.226.68] | 發表日期 : 2021-02-19 16:30

print(max(list(map(int,input().split()))))
 
#26987: Re:Python 一行解


406490150@gms.tku.edu.tw (我是朱朱)

學校 : 國立交通大學
編號 : 139794
來源 : [140.113.236.122]
最後登入時間 :
2022-09-03 11:13:16
d065. 三人行必有我師 (1 行版) -- 板橋高中教學題 | From: [36.238.39.26] | 發表日期 : 2021-09-06 15:48

print(max(list(map(int,input().split()))))


中間的list可以省略,max(裡面可以讀iterable)

 
#28876: Re:Python 一行解


jeter.nice@gmail.com (唯一)

學校 : 德明財經科技大學
編號 : 112857
來源 : [60.251.47.215]
最後登入時間 :
2023-04-16 13:02:46
d065. 三人行必有我師 (1 行版) -- 板橋高中教學題 | From: [49.159.84.117] | 發表日期 : 2022-01-09 23:22

print(max(list(map(int,input().split()))))


中間的list可以省略,max(裡面可以讀iterable)

print(max([int(i) for i in input().split()]))

 
ZeroJudge Forum