Python Tricks
Use of * in python
Mar 25, 20212 min read
Search for a command to run...
Use of * in python
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...