Why do the two code samples return the same result?
code sample A)
employees = ['Michael', 'Dwight', 'Jim', 'Pam', 'Ryan', 'Andy', 'Robert']
index4 = (employees[4]) # with brackets
print(index4)
code sample B)
employees = ['Michael', 'Dwight', 'Jim', 'Pam', 'Ryan', 'Andy', 'Robert']
index4 = employees[4] #without brackets
print(index4)
Both result in 'Ryan'.