sikuli-driver team mailing list archive
-
sikuli-driver team
-
Mailing list archive
-
Message #07588
Re: [Question #181735]: How to use Turkish Character with Input() and popup()
Question #181735 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/181735
RaiMan posted a new comment:
--- input("a unicode string")
here it is just enough to tell Jython, that the string contains unicode characters:
a=input(u"Enter a Sayı")
--- answer = input("hello")
if it might be, that the returned string in answer contains utf-8 unicode characters, you have to write:
answer = input("hello").encode("utf-8")
--
You received this question notification because you are a member of
Sikuli Drivers, which is an answer contact for Sikuli.