![]() |
|
#2
|
|||
|
|||
|
Hi,
You're opening the file for appending. So it is adding the data to the existing data in the file. If you want to create the file from scratch open it using the 'w' flag: Code:
question_data = open('study_data','w')
|
|
|