I'm new to python and currtly playing a little bit with it.
So I'm trying to use string formatting and get an error message for following code:
domain = 'myway.net'
inet = 'the internet'
line2 = "Play the way through %s using %s" (inet, domain)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: 'str' object is not callable
What doing I wrong?
