Skip to content

Commit

Permalink
Create 12.4.12 Librarian, Part 2
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeHS-Solutions authored Feb 10, 2024
1 parent 62ee8e2 commit 334fde8
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
name_list = []
for i in range(5):
name = input("Name: ")
name = name.split()
print(name)
name_list.append(name[-1])
name_list.sort()
print(name_list)

0 comments on commit 334fde8

Please sign in to comment.