■ choice 함수를 사용해 리스트 항목을 무작위로 구하는 방법을 보여준다.
▶ 예제 코드 (PY)
1 2 3 4 5 6 7 8 9 10 11 |
import random list = ["ice cream", "pancakes", "brownies", "cookies", "candy"] print(random.choice(list)) """ candy """ |
■ choice 함수를 사용해 리스트 항목을 무작위로 구하는 방법을 보여준다.
▶ 예제 코드 (PY)
1 2 3 4 5 6 7 8 9 10 11 |
import random list = ["ice cream", "pancakes", "brownies", "cookies", "candy"] print(random.choice(list)) """ candy """ |