In [1]:
from __future__ import print_function
from check import check, print

Excercise 1.1

Assign a string with the value 'Kurt' to a variable named first_name.


In [2]:
## Write code here
first_name = 'Kurt'
print(first_name)


###
check('1.1')


Kurt
Out[2]:

Excersise 1.2


In [3]:
# Write your code here
test = 0

print('Guten Tag')

###
check('1.2')


Guten Tag
Out[3]: