guide to printing in python with {} code example
Example 1: how to print in python
#('') a string, to indicate it is a string you can use ("") or ('')
print("hello world")
#a integer
print(19)
# a float:
print(4.5)
# a bool:
print (True)
print (False)
Example 2: python print advanced
# sep is between each item. empty string disables it.
print('hello', 'world', sep='')
##helloworld
# end is placed at the end of the statement. defaults to '\n' (line break)
print('The first sentence', end='. ')
print('The second sentence', end='. ')
##The first sentence. The second sentence.
# file allows you to change where it sends the data
with open('file.txt', mode='w') as file_object:
print('hello world', file=file_object)
## this would print "hello world" to a file named "file.txt"
# note: you can't use print for anything that isn't a character.
# use flush to disable buffering:
print(countdown, end='...', flush=True)