We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f39a13 commit b06b77cCopy full SHA for b06b77c
Mundo-03.py
@@ -1866,4 +1866,17 @@ def voto(bth):
1866
# factorial(5, show=False)
1867
# help(factorial)'''
1868
1869
-# CHALLENGE 103
+# CHALLENGE 103 - UNCOMPLETED
1870
+
1871
+def ficha(name = "<Unknow>", golas = "0"):
1872
+ if(len(name)== 0):
1873
+ print(f"The player {name} scored {golas} goals in the championship!")
1874
+ else:
1875
1876
1877
1878
+print("="*40)
1879
+name = str(input("What is the name of the player ? "))
1880
+goals = str(input("How many goals the player scored ? "))
1881
+ficha(name, goals)
1882
+# ficha()
0 commit comments