This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author lucassdssampaio
Recipients lucassdssampaio, mark.dickinson
Date 2018-07-01.21:00:13
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1530478813.19.0.56676864532.issue34016@psf.upfronthosting.co.za>
In-reply-to
Content
same code with another input
type is list

lista4 = input().split()
print(lista4)
lista4.sort()
print(lista4)

 6 8 9
['6', '8', '9']
['6', '8', '9']


lista4 = input().split()
print(lista4)
lista4.sort()
print(lista4)

 10 11 12
 
['10', '11', '12']
['10', '11', '12']

but if you put a 9 <with 10

 9 10 11
 
['9', '10', '11']
['10', '11', '9']
History
Date User Action Args
2018-07-01 21:00:13lucassdssampaiosetrecipients: + lucassdssampaio, mark.dickinson
2018-07-01 21:00:13lucassdssampaiosetmessageid: <1530478813.19.0.56676864532.issue34016@psf.upfronthosting.co.za>
2018-07-01 21:00:13lucassdssampaiolinkissue34016 messages
2018-07-01 21:00:13lucassdssampaiocreate