''' Why guidelines: adapted from: http://google.github.io/styleguide/pyguide.html ''' print() print( 'The point of having style guidelines is to have a common' ) print( 'vocabulary of coding so people can concentrate on what you ' ) print( 'saying rather than on how you are saying it.' ) print() # Note you can do things to make this program prettier or have less lines but that is not our focus right now # \n would be one of those methods. It is an escape character.