Advertisement
python_notes

Add spaces to your code

Aug 18th, 2014
465
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.27 KB | None | 0 0
  1. Add spaces to your code with this line print('')
  2.  
  3.  
  4. # Example
  5.  
  6. print('')    
  7.  
  8.  
  9.  
  10.  
  11. # Add large space with pritn'''         <--- That's 3 single quotes
  12.  
  13.  
  14. # Example      
  15.  
  16. print'''
  17.  
  18. Just
  19. Filling
  20. up
  21. space
  22. for
  23. the
  24. example
  25. now
  26. you
  27. see
  28. the
  29. end
  30. quotes'''
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement