csc-python-solutions/07/a/6 - The Name Game.py

8 lines
188 B
Python
Raw Normal View History

2021-02-18 17:36:11 +00:00
name = input()
print(
name + ", " + name + ", bo-b" + name[1:] + "\n" +
"banana-fana fo-f" + name[1:] + "\n" +
"fee-fi-mo-m" + name[1:] + "\n" +
name + "!"
)