I want to reference a Questions
table/sheet in my database called StudentNames
Where would I implement the reference point so only the Questions
sheet is accessed
def QuestionGenerator():
questionlist_file = open('StudentNames.csv')
reader=csv.reader(questionlist_file)
rownum=0
array2=[]
for row in reader:
array2.append(row)
rownum=rownum+1
print(array2)