Hello, Ivan.<div><br></div><div>Welcome to PythonCE. From your message, I think your script is probably working fine. The problem is that blasted dialog, which is covering your output. A very simple workaround is to add a few blank lines before printing your x value, so that it appears below the dialog (I know this works on a PDA, but maybe the screen size is different on a mobile phone?). Your code might look like:</div>
<div><br></div><div>x = input(&quot;Enter value&quot;)</div><div>print 10*&quot;\r\n&quot;             # prints 10 blank lines</div><div>print x</div><div>raw_input(&quot;Enter for exit&quot;)<br><br></div><div>Alternatively, you might want to add a short pause before the exit:</div>
<div><br></div><div>import time</div><div>x = input(&quot;Enter value&quot;)</div><div>print x</div><div>time.sleep(2)             # wait 2 seconds</div><div>raw_input(&quot;Enter for exit&quot;)</div><div><br></div><div>
HTH</div><div><br></div><div>Adam</div><div><br></div><div><br><div class="gmail_quote">2011/4/21 Ivan Ševčík <span dir="ltr">&lt;<a href="mailto:dark-raven3@hotmail.com">dark-raven3@hotmail.com</a>&gt;</span><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">




<div>
I am started a weeak ago with python, and yesterday I wodnloaded for my mobile.<br>However I feel that something got wrong. The problem is that when I run a script on computer that requires input, prints something and agains require input (that second just prevents from script closing before reading output), i get what I want - example : <br>
Enter value10<br>10<br>Enter for exit<br><br>That&#39;s not the case with pythonCE. It creates dialog, I enter value, nothing is printed out and I am again prompted for exit. I find that quite strange as it&#39;s the very same code and it acts like after input is output or all commands ignored. <br>
My code:<br>x = input(&quot;Enter value&quot;)<br>print x<br>raw_input(&quot;Enter for exit&quot;)<br><br>Thanks for help as this is an issue I can&#39;t move along with..<br>                                               </div>
<br>_______________________________________________<br>
PythonCE mailing list<br>
<a href="mailto:PythonCE@python.org">PythonCE@python.org</a><br>
<a href="http://mail.python.org/mailman/listinfo/pythonce" target="_blank">http://mail.python.org/mailman/listinfo/pythonce</a><br>
<br></blockquote></div><br></div>