4. Input Output - JulTob/Python GitHub Wiki
The output of data is accomplished with the print function.
print(“Text to print”)
print(”Text to print”, end = ‘;’ ) #is this CSV?
end # is the parameter for end of line character (or string).
print("%c is my %s letter and my number %d number is %.5f" %('x', 'favourite', 1, .14))