below is a section of my code where i am trying to output a string and an integer to a file. It would not let me output more than on thing at a time so I had to put them on seperate lines. I also now have an error saying:
TypeError: Expected a character buffer object
referring to the line outputting the variable count. Can someone tell me how to fix this error? Also if I could somehow combine all this into one line that would be cool too. Thanks!
print outfile.write ("(" + currentuser + ")")
print outfile.write (" ")
print outfile.write (count)