We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1d22275 + d3c2a03 commit c743686Copy full SHA for c743686
Demos/Demo07/test.py
@@ -1,13 +1,13 @@
1
import sys
2
print "Win version:", sys.winver
3
import spam
4
-print spam.foo('hello world', 1)
+print (spam.foo('hello world', 1))
5
p = spam.CreatePoint( 10, 25 )
6
-print "Point:", p
+print ("Point:", p)
7
p.x = 58
8
-print p.x, p
+print (p.x, p)
9
p.OffsetBy( 5, 5 )
10
-print p
11
-print "Current value of var test is: ", test
+print (p)
+print ("Current value of var test is: ", test)
12
test.Value = "New value set by Python"
13
-print spam.getdouble()
+print (spam.getdouble())
0 commit comments