Skip to content

Commit b06b77c

Browse files
CHALLENGE 103 - UNCOMPLETED
1 parent 3f39a13 commit b06b77c

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

Mundo-03.py

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1866,4 +1866,17 @@ def voto(bth):
18661866
# factorial(5, show=False)
18671867
# help(factorial)'''
18681868

1869-
# CHALLENGE 103
1869+
# 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+
print(f"The player {name} scored {golas} goals in the championship!")
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

Comments
 (0)