11 Nov Tuesday Python Homework 18:30 – 21.11.09
Question:
Use input() to take 10 input from user, each item is separated by space. Then try to complete the following task:
- Create a list from the input
- Delete all repeated elements of the list.
Sample Input 1: 1 2 3 2 1 3 98 98 67 Sample Output 1: 1,2,3,98,67
Sample Input 2: Kevin Jack Kevin Jack Kevin Jack Kevin Kevin Jack Jack Sample Output 2: Kevin,Jack
Hint: 1. You could use split() to convert the input string into a list 2. You could create another list, if the item is not in that list, you can add the new item into that list 3. You could use item in list to check if the item in the list or not
Sorry, the comment form is closed at this time.