CM6111 in your home directory (folder with your username)assignments - where all homeworks and coursework will be savedlectures - where all lectures will be savedwork - space for your own work, either as a Python script or a Jupyter notebookage.py, filling in the blanks:
In [3]:
name = "<YOUR NAME HERE>"
current_year = 2016
year_of_birth = 1989 #add your age here
age = str(current_year - year_of_birth)
print("Hello")
print(name)
print("You are: " + str(current_year - year_of_birth))
Run the above code using python age.py in your command prompt/terminal
+ between "You are" and the age?str stands for on the last line? Why is it there?