uaveiro-leci/1ano/1semestre/fp/aula00/welcome.py

13 lines
349 B
Python
Raw Normal View History

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))