Programming/Python 웹 스크래퍼 만들기
Python 랜덤 숫자 맞추기
3.4 Python Standard Libarary 컴퓨터가 숫자 하나를 선택하고, user 도 숫자 하나를 선택한다. user가 숫자를 정확하게 맞췄다면 이기고, 아니면 진다. user_choice = int(input("choose number ")) pc_choice = 50 if user_choice == pc_choice: print("You won!") elif user_choice > pc_choice: print("Lower!") elif user_choice < pc_choice: print("Higher!") 이전에 했듯이 int는 input 에서 나온 string 형태의 "20" 을 int 형태의 20으로 변환 시켜준다 int : "20" → 20 모든 조건이 들어가므로 굳이 el..