Message320845
| 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:13 | lucassdssampaio | set | recipients: + lucassdssampaio, mark.dickinson |
| 2018-07-01 21:00:13 | lucassdssampaio | set | messageid: <1530478813.19.0.56676864532.issue34016@psf.upfronthosting.co.za> |
| 2018-07-01 21:00:13 | lucassdssampaio | link | issue34016 messages |
| 2018-07-01 21:00:13 | lucassdssampaio | create | |