줄기세포

[Python 3.7 / 파이썬 마스터 1급] 최대값 최소값 구하기 본문

Python

[Python 3.7 / 파이썬 마스터 1급] 최대값 최소값 구하기

줄기세포(Stem_Cell) 2023. 6. 23. 10:08

출처: KAIT 통신기술 자격검정 https://www.ihd.or.kr/guidequestion.do

  1. 9.96, 1.27, 5.07, 6.45, 8.38, 9.29, 4.93, 7.73, 3.71, 0.93 중에서 최대값, 최소값 구해라
  2. Alotofthingsoccureachday 중에서 최대값, 최소값 구해라
1.
a = [9.96, 1.27, 5.07, 6.45, 8.38, 9.29, 4.93, 7.73, 3.71, 0.93]
print( max(a), min(a) )
 
2-1.
b = list('Alotofthingsoccureachday')
print( max(b), min(b) )

2-2.
# list type이 아닌 str type에서도 max, min 가능함
b = 'Alotofthingsoccureachday'
print( max(b), min(b) )

 

Comments