see the python courseware about strings: https://www.drawbot.com/content/courseware.html#strings you can not have the same quote mark inside a string and to indicate a string. print("d'étude") print('d"étude') print('d\'étude') # escaping ' good luck!