File size: 194 Bytes
c5aee4e
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
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)