[Tutor] challenge-chapter 2

2013-05-21 Thread Andrew Triplett
I am on chapter two for Python Programming working on the challenges and the 
question is:

1. Create a list of legal and illegal variable names. Describe why each is 
either legal or illegal. Next, create a list of "good" and "bad" legal variable 
names. Describe why each is either a good or bad choice for a variable name.

Can you help me solve this problem?
___
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
http://mail.python.org/mailman/listinfo/tutor


[Tutor] Presenting text in different ways by using quotes!

2013-05-23 Thread Andrew Triplett
I am asked to present text in different ways by using quotes in strings. for 
example:

print("Program "Game Over" 2.0")

print("same", "message", "as before")

print("just", 

    "a bit", 

    "bigger")

print("Here", end=" ")
print("it is...")

print(

  """





    """
)

I can't however seem to input the text GAME OVER in giant text as it says in 
the book. Any help for this would be appreciated.

-Mitch Stevens___
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
http://mail.python.org/mailman/listinfo/tutor