add lpic101 completed (lpic1_book_101-500.csv) #7

Merged
waldek merged 4 commits from testing into master 2021-07-13 14:42:44 +02:00
1 changed files with 17 additions and 5 deletions
Showing only changes of commit 73009d72fe - Show all commits

View File

@ -9,10 +9,21 @@ from rich.markdown import Markdown
# Open the CSV file and create a dictionary with all the questions # Open the CSV file and create a dictionary with all the questions
def _create_dictionary(): def _create_dictionary():
with open(path) as file: answers = input("Choose your question list : \n 1: LPI Essentials \n 2: LPIC 1 101-500 \n")
reader = csv.DictReader(file) if answers == "1":
data = list(reader) with open(path1) as file:
return data reader = csv.DictReader(file)
data = list(reader)
return data
elif answers == "2":
with open(path2) as file:
reader = csv.DictReader(file)
data = list(reader)
return data
else:
print("Please enter a valid value")
exit()
def _print_question(question_asked): def _print_question(question_asked):
@ -87,7 +98,8 @@ def print_stats(counter):
if __name__ == "__main__": if __name__ == "__main__":
path = "./data/list_book1.csv" path1 = "./data/list_book1.csv"
path2 = "./data/lpic1_book_101-500.csv"
counter = [] counter = []
dictionary = _create_dictionary() dictionary = _create_dictionary()
random.shuffle(dictionary) random.shuffle(dictionary)