--
You received this message because you are subscribed to the Google Groups "PyScripter" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pyscripter+...@googlegroups.com.
To post to this group, send email to pyscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/pyscripter.
For more options, visit https://groups.google.com/groups/opt_out.
Try:
print x
On Tuesday, September 17, 2013, zinc wrote:
Hi,--I just installed pyscripter on my window machine. When I type a simple program just to check it out, I there is not output at the bottom of the tool or anywhere else.Does anybody know how I can fix it?I type for example:x = 2type(x)and then I click on "run", it runs, but I get no response.Even 2 + 2 gets me no response.Please, help.
You received this message because you are subscribed to the Google Groups "PyScripter" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pyscripter+unsubscribe@googlegroups.com.
To post to this group, send email to pyscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/pyscripter.
For more options, visit https://groups.google.com/groups/opt_out.
--
You received this message because you are subscribed to the Google Groups "PyScripter" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pyscripter+...@googlegroups.com.
Try:
print x
On Tuesday, September 17, 2013, zinc wrote:
Hi,--I just installed pyscripter on my window machine. When I type a simple program just to check it out, I there is not output at the bottom of the tool or anywhere else.Does anybody know how I can fix it?I type for example:x = 2type(x)and then I click on "run", it runs, but I get no response.Even 2 + 2 gets me no response.Please, help.
You received this message because you are subscribed to the Google Groups "PyScripter" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pyscripter+unsubscribe@googlegroups.com.
To post to this group, send email to pyscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/pyscripter.
For more options, visit https://groups.google.com/groups/opt_out.
To unsubscribe from this group and stop receiving emails from it, send an email to pyscripter+...@googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to pyscripter+...@googlegroups.com.
#!/usr/bin/env pythondef main():x = 5print(type(5))if __name__ == '__main__':
main()
def main():x = 5print(type(5))if __name__ == '__main__':
main()
*** Python 2.7.5 (default, May 15 2013, 22:43:36) [MSC v.1500 32 bit (Intel)] on win32. ***Colin W.
*** Remote Python engine is active ***
>>>
*** Remote Interpreter Reinitialized ***
>>>
[Dbg]>>>
<type 'int'>
>>>
--