Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Funciones Python listas
  • Loading branch information
eybagit committed Aug 24, 2025
commit 2890d42919b72f977e89bd360f417e7b8ed03483
6 changes: 6 additions & 0 deletions .learn/resets/09-Array-Methods/app.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
names = ['John', 'Kenny', 'Tom', 'Bob', 'Dilan']

## CREATE YOUR FUNCTION HERE


print(sort_names(names))
2 changes: 2 additions & 0 deletions exercises/09-Array-Methods/app.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
names = ['John', 'Kenny', 'Tom', 'Bob', 'Dilan']

def sort_names(names):
return sorted(names)
## CREATE YOUR FUNCTION HERE


Expand Down