본문 바로가기

python9

[python] dict 를 list로 변환시키기 value_list = list(dict_data.values()) 2021. 10. 8.
[python] json 을 dict로 변환시키기 #json파일 #{ # "orders": [ # {"order_number": "10000743", "purchase_price": "800"}, # {"order_number": "10000814", "purchase_price": "800"} # ] #} import json def json_parscing(savepath, name): #json 파일 읽기 with open(savepath, 'r', encoding='UTF-8-sig') as json_file: json_data = json.load(json_file) #json_data[orders] : list형 for data in json_data[name]: #json.loads로 dict형으로 변경 dict_data = json.loa.. 2021. 10. 8.
[python] FizzBizzBuzz TEST ''' fizz, bizz, buzz 찾기 fizz : 3의 배수 bizz : 5의 배수 buzz : 7의 배수 결과 값 : 해당 배수일 경우 fizz,bizz,buzz 를 출력한다 example) 1 2 fizz 4 bizz fizz buzz 8 fizz bizz 11 fizz 13 buzz fizzbizz 16 ''' inputValue = input("범위를 입력해주세요 : ") for i in range(1,int(inputValue)+1): outValue = "" if i%3 == 0: outValue = "fizz" if i%5 == 0: outValue = outValue + "bizz" if i%7 == 0: outValue = outValue + "buzz" print(i if outV.. 2021. 2. 13.
[python] Tic-Tac-Toe 게임 # Tic-Tac-Toe 게임 # 1. 3X3판을 만든다 # 2. 번갈아가면서 O,X 를 놓는다 # 3. 같은 모양을 연속으로 세 개 먼저 놓으면 승리한다 inputDict= { 1 : " ", 2 : " ", 3 : " ", 4 : " ", 5 : " ", 6 : " ", 7 : " ", 8 : " ", 9 : " ", } def checkDuplicate(position): duplicateCheck = False if inputDict[position] != " ": duplicateCheck = True return duplicateCheck def setData(position,value): inputDict[position] = value def printBoard(): print("{}|{}.. 2021. 2. 12.