Alright, I'm trying to save three raw input variables to a text file. Every thing works fine until it gets to appending (I think that's what it's called) the information to the text file. It gets down to the 2nd variable on the list, which is age, and then prints this error:
Traceback (most recent call last):
File "C:\Users\Owner\Desktop\Management CMS\employee-management.py", line 7, in <module>
fileObj.write(age)
TypeError: expected a character buffer object
My code is:
name = raw_input("What is your name?")
age = int(raw_input("How old are you?"))
favcolor = raw_input("What is your favorite color?")
fileObj = open("employee.txt","w")
fileObj.write(name)
fileObj.write(age)
fileObj.write(favcolor)
fileObj.close()
print "The following text has been saved:"
print name
print age
print favcolor