I want to print the following output in python:
99 buckets of bits on the bus.
99 buckets of bits.
Take one down, short it to ground.
98 buckets of bits on the bus.
with a single print command and no "\n" characters in between. How can this be done?
With triple-quoted string literals, you can use actual newlines instead of \n
.
print(""" 99 buckets of bits on the bus.
99 buckets of bits.
Take one down, short it to ground.
98 buckets of bits on the bus.""")