How does one write both multiple strings and multiple variable outputs on one line in a file to output? I know that write() only accepts one argument, though ideally this is what I'm trying to achieve:
write('Temperature is', X , 'and pressure is', Y)
The result would be a table.
Can you help?