diff --git a/Examples/python/variables/runme.py b/Examples/python/variables/runme.py index d59e0aa3e..cf9f9f861 100644 --- a/Examples/python/variables/runme.py +++ b/Examples/python/variables/runme.py @@ -2,6 +2,8 @@ import example +print("Variables =", example.cvar) + # Try to set the values of some global variables example.cvar.ivar = 42 @@ -22,7 +24,7 @@ example.cvar.name = "Bill" # Now print out the values of the variables -print("Variables (values printed from Python)") +print("\nVariables (values printed from Python)") print("ivar = %s" % example.cvar.ivar) print("svar = %s" % example.cvar.svar)