array_str = array('u', ['takeoff', 'airplane', 'rudder', 'propeller']) array_order = sorted(array_str) print(array_order)
我总是得到同样的错误:“类型错误:数组项必须是unicode字符”,我已经尝试将其更改为unicode字符。
mwyxok5s1#
由于你使用python 3x尝试相同的逻辑,而不使用数组模块。它对我来说还可以,甚至不使用unicode字符
array_str = ['takeoff', 'airplane', 'rudder', 'propeller'] array_order = sorted(array_str) print(array_order)
1条答案
按热度按时间mwyxok5s1#
由于你使用python 3x尝试相同的逻辑,而不使用数组模块。它对我来说还可以,甚至不使用unicode字符