Advertisement
Guest User

Untitled

a guest
Jan 27th, 2011
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.08 KB | None | 0 0
  1. errado
  2. if True:
  3.     pass
  4.     else:
  5.         pass
  6.  
  7. correto:
  8. if True:
  9.     pass
  10. else:
  11.     pass
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement