Advertisement
here2share

# s60_NoUnicode.py

Sep 10th, 2016
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. # s60_NoUnicode.py
  2.  
  3. import sys,series60_console as c,appuifw as a,e32
  4. l=e32.Ao_lock()
  5. a.app.exit_key_handler=l.signal
  6. bd=a.app.body=c.Console().text
  7. bd.color= 255, 0, 0
  8. bd.font="title",27
  9. def pr(t):
  10.     sys.stderr.write(t+"\n")
  11. pr("Hello Python World")
  12. pr("PyS60 - Display Text Without Unicode")
  13. l.wait()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement