Python Tricks
print(array, end=" ")
Everytime you print something in python it automatically creates a new line. It is very useful unless you want to print something in the same line for that you use end=" " .
print("whatever you want to", end="")
set()
This is...
anujshukla.hashnode.dev2 min read