(More Type 10) QUIZ
SoloLearn Python 번역
- Can you slice a tuple?
- 튜플을 slice 할 수 있나?
Yes
- Which list slicing reverses the list ‘numbers’?
- 어떤 리스트 slice가 ‘numbers’ 리스트를 반전하는가?
numbers[::-1]
- What could be described as an immutable list?
- immutable 리스트로 무엇이 설명될 수 있는가?
튜플
- What is returned by functions that don’t have a return statement?
- return 문이 없는 함수는 무엇을 반환하는가?
None
- What is the result of this code?
- 이 코드의 결과는 무엇인가?
nums = (55, 44, 33, 22)
print(max(min(nums[:2]), abs(-42)))
44