# coding: utf-8 # Execute the program and see what happens. # Then modify the program so that X is replaced by the course input. # Hint: see what we did with the name. message = """ Caro/a {}, Bem-vindo/a à UC de Pensamento Computacional e ao curso de X. Esperamos que aprendas muito e que te divirtas. Cumprimentos, Liliana Ferreira. """ name = input("Como te chamas? ") course = input("Qual é o teu curso? ") print(message.format(name))