You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
from db import *
|
|
|
|
mode = input('mode: ')
|
|
|
|
words = []
|
|
while True:
|
|
temp = input()
|
|
if temp == 'exit':
|
|
break
|
|
else:
|
|
words.append(temp)
|
|
|
|
db = read()
|
|
db[mode] = db[mode] + words
|
|
write(db)
|
|
|
|
print("--------------")
|
|
print("ADDED")
|
|
print("--------------")
|