I want to save the options from a file in a list like:
options = [
    ["ala", "bala", "ma", "sc"],
    ["fg", "ada", "aas","asd"],
]
This options are for a quiz. For questions I was able to take the text line by line from the file, but for options this is not working:
with open('Options.txt', 'r') as k:
    options = k.readlines()
What should I do?
 
     
     
     
    