-
Notifications
You must be signed in to change notification settings - Fork 0
/
T9.py
73 lines (62 loc) · 2.13 KB
/
T9.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
"""
info1 = {'name': '철수', 'age': '21', 'Score': '4.3'}
info2 = {'name': '영희', 'age': '16', 'Score': '3.1'}
info3 = {'name': '민수', 'age': '24', 'Score': '3.9'}
info4 = {'name': '길동', 'age': '29', 'Score': '4.1'}
DB = [info1, info2, info3, info4]
"""
DB = []
with open("info.txt", "r") as file:
for line in file:
name, age, Score = line.strip().split(", ")
info = {"name": name, "age": age, "Score": Score}
DB.append(info)
def add():
print("[데이터 추가]")
name = input("추가할 데이터의 이름을 입력하세요 > ")
age = input("추가할 데이터의 나이를 입력하세요 > ")
Score = input("추가할 데이터의 성적을 입력하세요 > ")
new_info = {"name": name, "age": age, "Score": Score}
DB.append(new_info)
print("추가됨.")
with open("info.txt", "a") as file:
file.write(str(new_info["name"]) + ", " + str(new_info["age"]) + ", " + str(new_info["Score"]) + "\n")
def search():
for item in DB:
file.write(str(item))
print("[데이터 검색]")
key, value = input("검색할 데이터의 key와 value를 입력하세요 > ").split(":")
find = False
for info in DB:
if info[key] == value:
print(info)
find = True
if not find:
print("입력한 이름을 갖는 데이터가 존재하지 않습니다.")
def remove():
print("[데이터 삭제]")
name = input("삭제할 데이터의 이름을 입력하세요 > ")
for no, info in enumerate(DB):
if info["name"] == name:
del DB[no]
print("삭제됨.")
with open("info.txt", "w") as file:
file.write("")
with open("info.txt", "a") as file:
for item in DB:
file.write(str(item["name"]) + ", " + str(item["age"]) + ", " + str(item["Score"]) + "\n")
while True:
print("""
간단한 데이터베이스 만들기
메뉴
1. 데이터 추가
2. 데이터 검색
3. 데이터 삭제
""")
menu = int(input("메뉴를 선택하세요 > "))
if menu == 1:
add()
elif menu == 2:
search()
elif menu == 3:
remove()