PL/Python
[Python] 파이썬 리스트에서 별(*) 의미
SweetDev
2021. 1. 21. 08:52
www.geeksforgeeks.org/print-lists-in-python-4-different-ways/
Print lists in Python (5 Different Ways) - GeeksforGeeks
A Computer Science portal for geeks. It contains well written, well thought and well explained computer science and programming articles, quizzes and practice/competitive programming/company interview Questions.
www.geeksforgeeks.org
* symbol is use to print the list elements in a single line with space. To print all elements in new lines or separated by space use sep=”\n” or sep=”, ” respectively.