this is an elementary question but I couldn't find any explanation on google.
print([])
prints
[]
but
print(([]))
also prints,
[]
but then why use this form if it is the same as using normal list notation? I thought this was strange because I thought "()" is a tuple.