Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- print("************************************************")
- print("************************************************")
- weddinglist = []
- name = ""; # Initialize the variable "name" (string)
- counter = 0
- while name != "στοπ":
- counter += 1
- name = input("Όνομα " + str(counter) +": ")
- weddinglist.append(name)
- weddinglist.sort()
- print()
- print()
- for i in weddinglist:
- print(i)
- print("************************************************")
- print("************************************************")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement