2023-01-30 22:54:24 +00:00
|
|
|
# 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 and surname.
|
|
|
|
|
|
|
|
name = input("Primeiro nome? ")
|
|
|
|
surname = input("Apelido? ")
|
|
|
|
course = input("Curso? ")
|
|
|
|
|
|
|
|
print("Olá {} {}!\nBem vindo ao curso de {}!".format(name, surname, course))
|
2023-05-16 20:14:36 +00:00
|
|
|
|