Search found 7 matches

by dijerydack
Mon May 27, 2013 3:12 pm
Forum: General
Topic: Interactive python shell?
Replies: 3
Views: 10778

Thanks very much for your instructions. You've been very helpful indeed! I will (hopefully) stop asking so many questions now. :)
by dijerydack
Sun May 26, 2013 9:59 am
Forum: General
Topic: Interactive python shell?
Replies: 3
Views: 10778

Interactive python shell?

I am coming from learning to program Python with IDLE. It's a handy IDE for learning in but now I am getting into some heavier duty object orientated stuff I need a more integrated IDE. That is what brings me to Zeus.

What I am missing though is the interactive python shell that IDLE provides. I ...
by dijerydack
Sun May 26, 2013 9:13 am
Forum: General
Topic: Setting the compiler to Python 3.x
Replies: 4
Views: 12337

That seems to work. Thanks.
by dijerydack
Sun May 26, 2013 9:07 am
Forum: Tutorials, Tips and Tricks
Topic: Python Language Tutorial
Replies: 8
Views: 207059

If you are using Python 3.x then you will need to use this code:
print ("Hello world")

result = input("Enter a value: ")

print (result)

print ("Complete.....")
This code will only work for the Python 2.7.x version:
print "Hello world"

result = raw_input("Enter a value: ")

print result ...
by dijerydack
Sat May 25, 2013 12:12 pm
Forum: General
Topic: Setting the compiler to Python 3.x
Replies: 4
Views: 12337

Setting the compiler to Python 3.x

In compiler options / command line I have put : c:\python33\python.exe "$fn" (I dont know what "$fn" is, it was there already so I left it.) That is my python directory. however Python loads and crashes immediately and I get this error :

Using document type compiler options....

Fatal Python error ...
by dijerydack
Sat May 25, 2013 11:57 am
Forum: General
Topic: Syntax highlight colour change for Python
Replies: 2
Views: 9078

That worked a treat, thank you very much!
by dijerydack
Sat May 25, 2013 11:08 am
Forum: General
Topic: Syntax highlight colour change for Python
Replies: 2
Views: 9078

Syntax highlight colour change for Python

I am new to Zeus , I hope it will make a good IDE for coding in Python. First thing I noticed that I would like to be able to customise is the syntax highlight colours.

Zeus is displaying both doc string comments (marked ''' ''') and # comments in the same colour. I use these different types of ...