Omit results from cut-and-paste and drag-drop-drop
[reinteract/rox.git] / examples / basics.pyw
blob11a9557f3606a4ccb8f0c870ad1b528a167a1513
1 # To start using reinteract, type a Python expression, and hit
2 # <Control>Return to calculate. (This example is already calculated
3 # when it was loaded, but try modifying the statement below and
4 # then hit <Control>Return again to calculate it)
5 1 + 1
7 # You can assign and use variables
8 a = 2
10 a + 3
12 # As above, the default action when an expression returns a result
13 # other than N is to display it. You can also use 'print' explicitly
14 print "Hello", "World"
16 # Try modifying the value of a; you'll see that when you hit 
17 # control-return, the value of a + 3 is updated as well.
19 # You can define functions
20 def fact(n):
21     result = 1
22     for i in xrange(0,n):
23         result *= (1 + i)
24     return result
26 fact(3)
28 # And use constructs like for loops and if statements
29 for i in xrange(0,5):
30     print "%d: %d" % (i + 1, fact(i + 1))