A execução do script em Python a seguir apresentará False em tela.
x = [4,1,2,3]
y = sorted(x)
y.sort()
print(x == y)
Certo
Errado