print "creating a text file"
text_file = open("write_it.txt", "a")
score = 5
name = raw_input("What's your name?: ")
score = (score, name)
text_file.write(score)
text_file.close()
getting TypeError: expected a character buffer object
Please help.
Thanks