alwinvargheset@outlook.com
added chat-bot
c5aee4e
raw
history blame
194 Bytes
import json
def select_questions(category):
with open(str(category)+".json", 'r') as file:
data = json.load(file)
return data
q = select_questions("Technical")
print(q)