๋ณธ๋ฌธ ๋ฐ”๋กœ๊ฐ€๊ธฐ

Study_note(zb_data)/Python

์Šคํ„ฐ๋”” ๋…ธํŠธ (์ž๋ฃŒ๊ตฌ์กฐ ๋ฌธ์ œํ’€์ด)_0721

๐Ÿ“Œ ์—ฐ์Šต๋ฌธ์ œ (๋ฆฌ์ŠคํŠธ)

- 1๋ถ€ํ„ฐ ์‚ฌ์šฉ์ž๊ฐ€ ์ž…๋ ฅํ•œ ์ˆซ์ž๊นŒ์ง€์˜ ์•ฝ์ˆ˜์™€ ์†Œ์ˆ˜๋ฅผ ๋ฆฌ์ŠคํŠธ์— ๊ฐ๊ฐ ์ €์žฅํ•˜๊ณ , ์ถœ๋ ฅํ•˜๋Š” ํ”„๋กœ๊ทธ๋žจ์„ ๋งŒ๋“ค์–ด๋ณด์ž.

#1๋ถ€ํ„ฐ ์‚ฌ์šฉ์ž๊ฐ€ ์ž…๋ ฅํ•œ ์ˆซ์ž๊นŒ์ง€์˜ ์•ฝ์ˆ˜์™€ ์†Œ์ˆ˜๋ฅผ ๋ฆฌ์ŠคํŠธ์— ๊ฐ๊ฐ ์ €์žฅํ•˜๊ณ , ์ถœ๋ ฅํ•˜๋Š” ํ”„๋กœ๊ทธ๋žจ์„ ๋งŒ๋“ค์–ด๋ณด์ž.
inputNum = int(input('1๋ณด๋‹ค ํฐ ์ •์ˆ˜ ์ž…๋ ฅ : '))
listA = [] ; listB = []

for n in range(1, inputNum+1):
    if n == 1:
        listA.append(n)
    else:
        if inputNum % n == 0:
            listA.append(n)

print('list A : {}'.format(listA))

for number in range(2, inputNum+1):
    flag = True
    for n in range(2, number):
        if number % n == 0:
            flag = False
            break

    if flag:
        listB.append(number)

print('list B : {}'.format(listB))
>>>>
1๋ณด๋‹ค ํฐ ์ •์ˆ˜ ์ž…๋ ฅ : 40
list A : [1, 2, 4, 5, 8, 10, 20, 40]
list B : [2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37]

๐Ÿ“Œ ์—ฐ์Šต๋ฌธ์ œ 2 (๋ฆฌ์ŠคํŠธ)

- 1์ผ ์ „์ฒด ์ž…์žฅ ์š”๊ธˆ์„ ๊ตฌํ•˜๋Š” ํ”„๋กœ๊ทธ๋žจ์„ ๋งŒ๋“ค์–ด๋ณด์ž.

์ถœ์ฒ˜ : ์ œ๋กœ๋ฒ ์ด์Šค ๋ฐ์ดํ„ฐ ์Šค์ฟจ

import random

visitors = []
cnt_baby = [] ; cnt_kid = [] ; cnt_child = [] ; cnt_adult = [] ; cnt_grand = []

for n in range(100):
    visitors.append(random.randint(1, 100))

for age in visitors:

    if age <= 7 and age >= 0:
        cnt_baby.append(age)

    if age >= 8 and age <= 13:
        cnt_kid.append(age)

    if age >= 14 and age <= 19:
        cnt_child.append(age)

    if age >= 20 and age <= 64:
        cnt_adult.append(age)

    if age >= 65:
        cnt_grand.append(age)

price_baby = (len(cnt_baby) * 0)
price_kid = (len(cnt_kid) * 200)
price_child = (len(cnt_child) * 300)
price_adult = (len(cnt_adult) * 500)
price_grand = (len(cnt_grand) * 0)

sum = price_baby + price_kid + price_child + price_adult + price_grand

print('-'*20)
print('์˜์œ ์•„\t: {}๋ช… : {}์›'.format(len(cnt_baby), format(price_baby, ',')))
print('์–ด๋ฆฐ์ด\t: {}๋ช… : {}์›'.format(len(cnt_kid), format(price_kid,',')))
print('์ฒญ์†Œ๋…„\t: {}๋ช… : {}์›'.format(len(cnt_child), format(price_child, ',')))
print('์„ฑ์ธ\t\t: {}๋ช… : {}์›'.format(len(cnt_adult), format(price_adult, ',')))
print('์–ด๋ฅด์‹ \t: {}๋ช… : {}์›'.format(len(cnt_grand), format(price_grand, ',')))
print('-'*20)
print('1์ผ ์š”๊ธˆ ์ด ํ•ฉ๊ณ„ : {}์›'.format(format(sum,',')))
>>>>
--------------------
์˜์œ ์•„	: 6๋ช… : 0์›
์–ด๋ฆฐ์ด	: 6๋ช… : 1,200์›
์ฒญ์†Œ๋…„	: 6๋ช… : 1,800์›
์„ฑ์ธ 	: 43๋ช… : 21,500์›
์–ด๋ฅด์‹ 	: 39๋ช… : 0์›
--------------------
1์ผ ์š”๊ธˆ ์ด ํ•ฉ๊ณ„ : 24,500์›

๐Ÿ“Œ ์—ฐ์Šต๋ฌธ์ œ 3 (๋ฆฌ์ŠคํŠธ)

- ๋‹ค์Œ ๋ฆฌ์ŠคํŠธ์—์„œ ์ค‘๋ณต ์•„์ดํ…œ(์ˆซ์ž)์„ ์ œ๊ฑฐํ•˜๋Š” ํ”„๋กœ๊ทธ๋žจ์„ ๋งŒ๋“ค์–ด๋ณด์ž.

#๋‹ค์Œ ๋ฆฌ์ŠคํŠธ์—์„œ ์ค‘๋ณต ์•„์ดํ…œ(์ˆซ์ž)์„ ์ œ๊ฑฐํ•˜๋Š” ํ”„๋กœ๊ทธ๋žจ์„ ๋งŒ๋“ค์–ด๋ณด์ž
numbers = [2, 22, 7, 8, 9, 2, 7, 3, 5, 2, 7, 1, 3]
print('numbers : {}'.format(numbers))

idx = 0

while True:
    if idx >= len(numbers): #idx๊ฐ€ numbers ๋ฆฌ์ŠคํŠธ ๊ฐœ์ˆ˜๋ณด๋‹ค ๋งŽ์•„์ง€๋ฉด ๋ฉˆ์ถฐ๋ผ
        break

    if numbers.count(numbers[idx]) >= 2: #idx์ž๋ฆฌ์— ์žˆ๋Š” numbers์˜ ๊ฐœ์ˆ˜๊ฐ€ 2๊ฐœ ์ด์ƒ์ด๋ผ๋ฉด
        numbers.remove(numbers[idx]) : #idx์ž๋ฆฌ์— ์žˆ๋Š” numbers๋ฅผ ์ง€์›Œ๋ผ
        continue

    idx+=1

print('numbers : {}'.format(numbers))
>>>>
numbers : [2, 22, 7, 8, 9, 2, 7, 3, 5, 2, 7, 1, 3]
numbers : [22, 8, 9, 5, 2, 7, 1, 3]

๐Ÿ“Œ ์—ฐ์Šต๋ฌธ์ œ 4 (๋ฆฌ์ŠคํŠธ)

- 4๊ฐœ์˜ ์ˆซ์ž ์ค‘ ์„œ๋กœ ๋‹ค๋ฅธ ์ˆซ์ž 2๊ฐœ๋ฅผ ์„ ํƒํ•ด์„œ ๋งŒ๋“ค ์ˆ˜ ์žˆ๋Š” ๋ชจ๋“  ๊ฒฝ์šฐ์˜ ์ˆ˜๋ฅผ ์ถœ๋ ฅํ•˜๋Š” ํ”„๋กœ๊ทธ๋žจ์„ ๋งŒ๋“ค์ž

#4๊ฐœ์˜ ์ˆซ์ž ์ค‘ ์„œ๋กœ ๋‹ค๋ฅธ ์ˆซ์ž 2๊ฐœ๋ฅผ ์„ ํƒํ•ด์„œ ๋งŒ๋“ค ์ˆ˜ ์žˆ๋Š” ๋ชจ๋“  ๊ฒฝ์šฐ์˜ ์ˆ˜๋ฅผ ์ถœ๋ ฅํ•˜๋Š” ํ”„๋กœ๊ทธ๋žจ์„ ๋งŒ๋“ค์ž
numbers = [4, 6, 7, 9]
result = []

for number1 in numbers:
    for number2 in numbers:
        if number1 == number2:
            continue

        result.append([number1, number2])

print(f'result = {result}')
print(f'result length = {len(result)}')
>>>>
result = [[4, 6], [4, 7], [4, 9], [6, 4], [6, 7], [6, 9], [7, 4], [7, 6], [7, 9], [9, 4], [9, 6], [9, 7]]
result length = 12

๐Ÿ“Œ ์—ฐ์Šต๋ฌธ์ œ 1 (ํŠœํ”Œ)

scores = ((3.7, 4.2), (2.9, 4.3), (4.1, 4.2))
sum = 0

for score1, score2 in scores: 
    sum += score1 + score2 #scores์— ์žˆ๋Š” ๋ชจ๋“  ๊ฐ’์„ sum์— ๋”ํ•œ๋‹ค

avg = sum / (len(scores) * 2) #ํŠœํ”Œ์˜ ๊ธธ์ด * 2 ๋งŒํผ ๋‚˜๋ˆ ์„œ ํ‰๊ท ์„ ๊ตฌํ•œ๋‹ค

print('-'*40)
print(f'3ํ•™๋…„ ์ด ํ•™์  : {sum}')
print(f'3ํ•™๋…„ ํ‰๊ท  : {avg}')
print('-'*40)

grade4score = round((4.0 * 8 - sum), 1) #4ํ•™๋…„๋•Œ ํ•„์š”ํ•œ ํ•™์ ์„ ๊ตฌํ•œ๋‹ค
minScore = grade4score / 2 #1, 2ํ•™๊ธฐ๋กœ ๋‚˜๋ˆ ์•ผ ํ•˜๊ธฐ ๋•Œ๋ฌธ์— 2๋กœ ๋‚˜๋ˆˆ๋‹ค.
print(f'4ํ•™๋…„ ๋ชฉํ‘œ ์ด ํ•™์  : {grade4score}')
print(f'4ํ•™๋…„ ํ•œ ํ•™๊ธฐ ์ตœ์†Œ ํ•™์   : {minScore}')

scores = list(scores) #list๋กœ ๋ณ€ํ™˜
scores.append((minScore, minScore)) #list๋กœ ๋ณ€ํ™˜๋œ ์ƒํƒœ์—์„œ ์ตœ์†Œ ํ•™์  append
scores = tuple(scores) #๋‹ค์‹œ Tuple๋กœ ๋ณ€ํ™˜
print(f'scores : {scores}') 
>>>>
----------------------------------------
3ํ•™๋…„ ์ด ํ•™์  : 23.4
3ํ•™๋…„ ํ‰๊ท  : 3.9
----------------------------------------
4ํ•™๋…„ ๋ชฉํ‘œ ์ด ํ•™์  : 8.6
4ํ•™๋…„ ํ•œ ํ•™๊ธฐ ์ตœ์†Œ ํ•™์   : 4.3
scores : ((3.7, 4.2), (2.9, 4.3), (4.1, 4.2), (4.3, 4.3))

๐Ÿ“Œ ์—ฐ์Šต๋ฌธ์ œ 2 (ํŠœํ”Œ)

tuple1 = 1, 3, 2, 6, 12, 5, 7, 8
tuple2 = 0, 5, 2, 9, 8, 6, 17, 3

tempHap = list(tuple1)
tempGyo = list()

for n in tuple2:
    if n not in tempHap:
        tempHap.append(n)

    else:
        tempGyo.append(n)
tempHap = tuple(sorted(tempHap))
tempGyo = tuple(sorted(tempGyo))

print(f'ํ•ฉ์ง‘ํ•ฉ : {tempHap}')
print(f'๊ต์ง‘ํ•ฉ : {tempGyo}')
>>>>
ํ•ฉ์ง‘ํ•ฉ : (0, 1, 2, 3, 5, 6, 7, 8, 9, 12, 17)
๊ต์ง‘ํ•ฉ : (2, 3, 5, 6, 8)

๐Ÿ“Œ ์—ฐ์Šต๋ฌธ์ œ 3 (ํŠœํ”Œ)

#์‹œํ—˜ ์ ์ˆ˜๋ฅผ ์ž…๋ ฅํ•œ ํ›„ ํŠœํ”Œ์— ์ €์žฅํ•˜๊ณ  ๊ณผ๋ชฉ๋ณ„ ํ•™์ ์„ ์ถœ๋ ฅํ•ด๋ณด์ž

korScore = int(input('kor : '))
engScore = int(input('eng : '))
matScore = int(input('mat : '))
sciScore = int(input('sci : '))
hisScore = int(input('his : '))
scores = ({'kor':korScore}, {'eng':engScore}, {'mat':matScore}, {'sci':sciScore}, {'his':hisScore})
print(f'scores : {scores}')

for item in scores: #scores์˜ item์„ ๋ฝ‘์•„์˜จ๋‹ค ex) {'kor': 99}, ....
    for key in item.keys(): #item.keys()๋ฅผ ํ†ตํ•ด key์— ๊ฐ ๊ฐ’์„ ํ• ๋‹น es) kor, ....
        if item[key] >= 90: #ex) item[kor] = ์‹œํ—˜ ์ ์ˆ˜, ์ˆซ์ž
            item[key] = 'A'
        elif item[key] >= 80:
            item[key] = 'B'
        elif item[key] >= 70:
            item[key] = 'C'
        elif item[key] >= 60:
            item[key] = 'D'
        else:
            item[key] = 'F'

print(f'scores : {scores}')
>>>>
kor : 99
eng : 55
mat : 67
sci : 80
his : 75
scores : ({'kor': 99}, {'eng': 55}, {'mat': 67}, {'sci': 80}, {'his': 75})
scores : ({'kor': 'A'}, {'eng': 'F'}, {'mat': 'D'}, {'sci': 'B'}, {'his': 'C'})

๐Ÿ“Œ ์—ฐ์Šต๋ฌธ์ œ 4 (ํŠœํ”Œ)

#์˜ค๋ฆ„์ฐจ์ˆœ ์ •๋ ฌ (ํ•œ๋ฒˆ ๋” ๋ณต์Šต!)
fruits = ({'์ˆ˜๋ฐ•':8}, {'ํฌ๋„':13}, {'์ฐธ์™ธ':12}, {'์‚ฌ๊ณผ':17}, {'์ž๋‘':19}, {'์ž๋ชฝ':15})
print(fruits)

fruits = list(fruits)
currentIdx = 0; nextIdx = 1
eIdx = len(fruits) - 1

flag = True
while flag:
    curDic = fruits[currentIdx]
    nextDic = fruits[nextIdx]

    curDicCnt = list(curDic.values())[0]
    nextDicCnt = list(nextDic.values())[0]

    if nextDicCnt < curDicCnt:
        fruits.insert(currentIdx, fruits.pop(nextIdx))
        nextIdx = currentIdx+1
        continue

    nextIdx += 1
    if nextIdx > eIdx:
        currentIdx += 1
        nextIdx = currentIdx + 1

        if currentIdx == 5:
            flag = False

print(tuple(fruits))
>>>>
({'์ˆ˜๋ฐ•': 8}, {'ํฌ๋„': 13}, {'์ฐธ์™ธ': 12}, {'์‚ฌ๊ณผ': 17}, {'์ž๋‘': 19}, {'์ž๋ชฝ': 15})
({'์ˆ˜๋ฐ•': 8}, {'์ฐธ์™ธ': 12}, {'ํฌ๋„': 13}, {'์ž๋ชฝ': 15}, {'์‚ฌ๊ณผ': 17}, {'์ž๋‘': 19})

๐Ÿ“Œ ์—ฐ์Šต๋ฌธ์ œ 5 (ํŠœํ”Œ)

studentCnt = ({'cls01' : 18},
              {'cls02' : 21},
              {'cls03' : 20},
              {'cls04' : 19},
              {'cls05' : 22},
              {'cls06' : 20},
              {'cls07' : 23},
              {'cls08' : 17},
              )

totalCnt = 0
minStdCnt = 0; minCls = ''
maxStdCnt = 0; maxCls = ''
deviation = []

for idx, dic in enumerate(studentCnt):
    for k, v in dic.items():
        totalCnt += v
        avg = totalCnt / len(studentCnt)

        if minStdCnt == 0 or minStdCnt > v:
            minStdCnt = v
            minCls = k

        if maxStdCnt < v:
            maxStdCnt = v
            maxCls = k

print('์ „์ฒด ํ•™์ƒ ์ˆ˜ : {}๋ช…'.format(totalCnt))
print('ํ‰๊ท  ํ•™์ƒ ์ˆ˜ : {}๋ช…'.format(int(avg)))
print('ํ•™์ƒ ์ˆ˜๊ฐ€ ๊ฐ€์žฅ ์ ์€ ํ•™๊ธ‰ : {}ํ•™๊ธ‰, ({}๋ช…)'.format(minCls, minStdCnt))
print('ํ•™์ƒ ์ˆ˜๊ฐ€ ๊ฐ€์žฅ ๋งŽ์€ ํ•˜๊ธ‰ : {}ํ•™๊ธ‰, ({}๋ช…)'.format(maxCls, maxStdCnt))

for idx, dic in enumerate(studentCnt):
    for k, v in dic.items():
        deviation.append({k : v - avg})

print('ํ•™๊ธ‰๋ณ„ ํ•™์ƒ ํŽธ์ž : {}'.format(deviation))
>>>>
์ „์ฒด ํ•™์ƒ ์ˆ˜ : 160๋ช…
ํ‰๊ท  ํ•™์ƒ ์ˆ˜ : 20๋ช…
ํ•™์ƒ ์ˆ˜๊ฐ€ ๊ฐ€์žฅ ์ ์€ ํ•™๊ธ‰ : cls08ํ•™๊ธ‰, (17๋ช…)
ํ•™์ƒ ์ˆ˜๊ฐ€ ๊ฐ€์žฅ ๋งŽ์€ ํ•˜๊ธ‰ : cls07ํ•™๊ธ‰, (23๋ช…)
ํ•™๊ธ‰๋ณ„ ํ•™์ƒ ํŽธ์ž : [{'cls01': -2.0}, {'cls02': 1.0}, {'cls03': 0.0}, {'cls04': -1.0}, {'cls05': 2.0}, {'cls06': 0.0}, {'cls07': 3.0}, {'cls08': -3.0}]

๐Ÿ“Œ ์—ฐ์Šต๋ฌธ์ œ 1 (๋”•์…”๋„ˆ๋ฆฌ)

#1~10๊นŒ์ง€ ๊ฐ ์ •์ˆ˜์— ๋Œ€ํ•œ ์•ฝ์ˆ˜๋ฅผ ์ €์žฅํ•˜๋Š” ๋”•์…”๋„ˆ๋ฆฌ๋ฅผ ๋งŒ๋“ค๊ณ , ์ถœ๋ ฅํ•˜๋Š” ํ”„๋กœ๊ทธ๋žจ์„ ๋งŒ๋“ค์–ด๋ณด์ž
dic = {}

for n1 in range(2, 11):
    tempList = []
    for n2 in range(1, n1+1):
        if n1 % n2 == 0:
            tempList.append(n2)
    dic[n1] = tempList

print(dic)
>>>>
{2: [1, 2], 3: [1, 3], 4: [1, 2, 4], 5: [1, 5], 6: [1, 2, 3, 6], 7: [1, 7], 8: [1, 2, 4, 8], 9: [1, 3, 9], 10: [1, 2, 5, 10]}

๐Ÿ“Œ ์—ฐ์Šต๋ฌธ์ œ 2 (๋”•์…”๋„ˆ๋ฆฌ)

members = {}
n = 1
while n < 6:
    mail = input('๋ฉ”์ผ์ž…๋ ฅ : ')
    pw = input('๋น„๋ฒˆ์ž…๋ ฅ : ')

    if mail in members:
        print('์ด๋ฏธ ์‚ฌ์šฉ์ค‘์ธ ๋ฉ”์ผ ๊ณ„์ •์ž…๋‹ˆ๋‹ค.')
        continue
    else:
        members[mail] = pw
        n += 1

for key in members.keys():
    print(f'{key} : {members[key]}')

while True:
    delMail = input('์‚ญ์ œํ•  ๊ณ„์ •(๋ฉ”์ผ) ์ž…๋ ฅ : ')

    if delMail in members:
        delPw = input('๋น„๋ฒˆ ์ž…๋ ฅ: ')
        if members[delMail] == delPw:
            del members[delMail]
            print(f'{delMail} ๊ณ„์ • ์‚ญ์ œ ์™„๋ฃŒ!')
            break

        else:
            print(f'{delMail}์˜ ๋น„๋ฒˆ ํ™•์ธ ์š”๋ง')

    else:
        print('๊ณ„์ • ํ™•์ธ ์š”๋ง!')

for key in members.keys():
    print(f'{key} : {members[key]}')

๐Ÿ“Œ ์—ฐ์Šต๋ฌธ์ œ 3 (๋”•์…”๋„ˆ๋ฆฌ)

์ถœ์ฒ˜ : ์ œ๋กœ๋ฒ ์ด์Šค ๋ฐ์ดํ„ฐ ์Šค์ฟจ

students = {'S21-0001':{'์ด๋ฆ„':'์ตœ์„ฑํ›ˆ',
                        '์„ฑ๊ตฌ๋ถ„':'M',
                        '์ „๊ณต':'๋””์ž์ธ',
                        '์—ฐ๋ฝ์ฒ˜':'010-1234-5678',
                        '๋ฉ”์ผ':'hun@gmail.com',
                        '์ทจ๋ฏธ':['๋†๊ตฌ, ์Œ์•…']},
            'S21-0002':{'์ด๋ฆ„':'ํƒ์˜์šฐ',
                        '์„ฑ๊ตฌ๋ถ„':'M',
                        '์ „๊ณต':'๋ฐ”๋ฆฌ์ŠคํŠธ',
                        '์—ฐ๋ฝ์ฒ˜':'010-5678-9012',
                        '๋ฉ”์ผ':'yeong@gmail.com',
                        '์ทจ๋ฏธ':['์ถ•๊ตฌ']},
            'S21-0003':{'์ด๋ฆ„':'ํ™ฉ์ง„์˜',
                        '์„ฑ๊ตฌ๋ถ„':'W',
                        '์ „๊ณต':'์Œ์•…',
                        '์—ฐ๋ฝ์ฒ˜':'010-9012-3456',
                        '๋ฉ”์ผ':'jin@gmail.com',
                        '์ทจ๋ฏธ':['์ˆ˜์˜, ์ฝ”๋”ฉ']}
            }
for k1 in students.keys():
    print('-'*40)
    print('ํšŒ์›๋ฒˆํ˜ธ : {}'.format(k1))
    student = students[k1]
    for k2 in student.keys():
        print('{} : {}'.format(k2, student[k2]))

memNo = input('์กฐํšŒํ•  ํšŒ์›๋ฒˆํ˜ธ๋ฅผ ์ž…๋ ฅํ•˜์„ธ์š”.: ')
print('{} : {}'.format(memNo, students[memNo]))
>>>>
----------------------------------------
ํšŒ์›๋ฒˆํ˜ธ : S21-0001
์ด๋ฆ„ : ์ตœ์„ฑํ›ˆ
์„ฑ๊ตฌ๋ถ„ : M
์ „๊ณต : ๋””์ž์ธ
์—ฐ๋ฝ์ฒ˜ : 010-1234-5678
๋ฉ”์ผ : hun@gmail.com
์ทจ๋ฏธ : ['๋†๊ตฌ, ์Œ์•…']
----------------------------------------
ํšŒ์›๋ฒˆํ˜ธ : S21-0002
์ด๋ฆ„ : ํƒ์˜์šฐ
์„ฑ๊ตฌ๋ถ„ : M
์ „๊ณต : ๋ฐ”๋ฆฌ์ŠคํŠธ
์—ฐ๋ฝ์ฒ˜ : 010-5678-9012
๋ฉ”์ผ : yeong@gmail.com
์ทจ๋ฏธ : ['์ถ•๊ตฌ']
----------------------------------------
ํšŒ์›๋ฒˆํ˜ธ : S21-0003
์ด๋ฆ„ : ํ™ฉ์ง„์˜
์„ฑ๊ตฌ๋ถ„ : W
์ „๊ณต : ์Œ์•…
์—ฐ๋ฝ์ฒ˜ : 010-9012-3456
๋ฉ”์ผ : jin@gmail.com
์ทจ๋ฏธ : ['์ˆ˜์˜, ์ฝ”๋”ฉ']
์กฐํšŒํ•  ํšŒ์›๋ฒˆํ˜ธ๋ฅผ ์ž…๋ ฅํ•˜์„ธ์š”.: S21-0003
S21-0003 : {'์ด๋ฆ„': 'ํ™ฉ์ง„์˜', '์„ฑ๊ตฌ๋ถ„': 'W', '์ „๊ณต': '์Œ์•…', '์—ฐ๋ฝ์ฒ˜': '010-9012-3456', '๋ฉ”์ผ': 'jin@gmail.com', '์ทจ๋ฏธ': ['์ˆ˜์˜, ์ฝ”๋”ฉ']}