I currently am making a list in python and I would like to find out how I can print a list without printing the brackets.
I have tried using different techniques on W3schools but they don't work.
Here's my code...
import os
import time
list1 = [input("First item: "), input("Second item: "),
input("Third item: ")]
time.sleep(0.5)
if (os.system == 'nt'):
os.system("cls")
else:
os.system("clear")
print(list1)