Example 1: printing a list in python items = [1, 2, 3, 4, 5, 6] #print with [] brackets separated by ', ' print(items) #print using operator print(*items) ...
確定! 回上一頁