I want to write something as one line such as:
Blah blah 123456 0.0000123
I used the below code:
value1 = 123456
value2 = 0.0000123
k = "Blah blah" + value1 +value2
File.write(k)
#outFile.write("Blah blah %s %s" % (value1 ,value2) )
The output is always:
Blah blah 123456
0.0000123