a_list.extend(['four','Ω'])
a_list
['a', 2.0, 3, True, 'four', '\xce\xa9']
why does it shows me xce\xa9? and not the sign omega?
a_list.extend(['four','Ω'])
a_list
['a', 2.0, 3, True, 'four', '\xce\xa9']
why does it shows me xce\xa9? and not the sign omega?