Skip to main content

x = [‘ab’, ‘cd’]

print(len(list(map(list, x))))

 

Source: Python programming tutorial

It would result in syntax error.


Reply