backslashes allow continuations : Statement : Language Basics PYTHON examples


PYTHON examples » Language Basics » Statement »

 

backslashes allow continuations


backslashes allow continuations

a = 0
b = 1
c = 2
d = 3
e = 4
f = 5
g = 6

if a == b and c == d and   
   d == e and f == g:
   print 'olde'                  # backslashes allow continuations

if (a == b and c == d and
    d == e and e == f):
    print 'new'                  # but parentheses usually do too

print "Here"

           
       



    Related Scripts with Example Source Code in same category :

Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON examples

 Navioo Language Basics
» Statement