fork download
  1. # encoding: utf-8
  2. from __future__ import print_function, unicode_literals
  3.  
  4. print([ord(x) for x in 'İle'])
  5. print([ord(x) for x in 'İle'.lower()])
Success #stdin #stdout 0s 23296KB
stdin
Standard input is empty
stdout
[304, 108, 101]
[105, 108, 101]