Skip to content

Commit 6ed38dc

Browse files
authored
Update app.py
1 parent e2f27d3 commit 6ed38dc

File tree

1 file changed

+5
-5
lines changed
  • exercises/08-Delete_element

1 file changed

+5
-5
lines changed

exercises/08-Delete_element/app.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
people = ['juan','ana','michelle','daniella','stefany','lucy','barak']
22

3-
def deletePerson(person_name):
3+
def delete_person(person_name):
44
# Your code here
5-
5+
66

77

88
# Don't delete anything below
9-
print(deletePerson("daniella"))
10-
print(deletePerson("juan"))
11-
print(deletePerson("emilio"))
9+
print(delete_person("daniella"))
10+
print(delete_person("juan"))
11+
print(delete_person("emilio"))

0 commit comments

Comments
 (0)