Create 6 - The Name Game.py

This commit is contained in:
Lukas Baumann 2021-02-18 18:36:11 +01:00 committed by GitHub
parent 5a4050b808
commit 3cb9083e71
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,7 @@
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 + "!"
)