Hi guys I am trying to save my file in python... I dont know how to do it.. It came out the save file to be like this : 506882122734561843241851186242872
What I am trying to do is ["50688", "212273", "4561843", "241851", "18624", "2872"]
with open("output_data.txt", "w") as out_file:
for user in users:
out_string = ""
out_string += str(user)
out_file.write(out_string)