laurentlb | f8003cc | 2017-11-28 09:12:56 -0800 | [diff] [blame] | 1 | assert_eq(int('1'), 1) |
| 2 | assert_eq(int('-1234'), -1234) |
| 3 | assert_eq(int(42), 42) |
| 4 | assert_eq(int(-1), -1) |
| 5 | assert_eq(int(True), 1) |
| 6 | assert_eq(int(False), 0) |
| 7 | assert_eq(int('11', 2), 3) |
| 8 | assert_eq(int('11', 9), 10) |
| 9 | assert_eq(int('AF', 16), 175) |
| 10 | assert_eq(int('11', 36), 37) |
| 11 | assert_eq(int('az', 36), 395) |
| 12 | assert_eq(int('11', 10), 11) |
| 13 | assert_eq(int('11', 0), 11) |
| 14 | assert_eq(int('0b11', 0), 3) |
| 15 | assert_eq(int('0B11', 2), 3) |
| 16 | assert_eq(int('0o11', 0), 9) |
| 17 | assert_eq(int('0O11', 8), 9) |
| 18 | assert_eq(int('0XFF', 0), 255) |
| 19 | assert_eq(int('0xFF', 16), 255) |
| 20 | |
| 21 | --- |
| 22 | int('1.5') ### invalid literal for int\(\) with base 10 |
| 23 | --- |
| 24 | int('ab') ### invalid literal for int\(\) with base 10: "ab" |
| 25 | --- |
| 26 | int(None) ### None is not of type string or int or bool |
| 27 | --- |
| 28 | int('123', 3) ### invalid literal for int\(\) with base 3: "123" |
| 29 | --- |
| 30 | int('FF', 15) ### invalid literal for int\(\) with base 15: "FF" |
| 31 | --- |
| 32 | int('123', -1) ### int\(\) base must be >= 2 and <= 36 |
| 33 | --- |
| 34 | int('123', 1) ### int\(\) base must be >= 2 and <= 36 |
| 35 | --- |
| 36 | int('123', 37) ### int\(\) base must be >= 2 and <= 36 |
| 37 | --- |
| 38 | int('0xFF', 8) ### invalid literal for int\(\) with base 8: "0xFF" |
| 39 | --- |
| 40 | int(True, 2) ### int\(\) can't convert non-string with explicit base |
| 41 | --- |
| 42 | int(1, 2) ### int\(\) can't convert non-string with explicit base |
| 43 | --- |
| 44 | int(True, 10) ### int\(\) can't convert non-string with explicit base |