TORONTO KIDS COMPUTER CLUB | Aurora Saturday 13:00 Python Practice 09.26.
18367
post-template-default,single,single-post,postid-18367,single-format-standard,ajax_fade,page_not_loaded,,qode-theme-ver-7.6.2,wpb-js-composer js-comp-ver-6.10.0,vc_responsive

Aurora Saturday 13:00 Python Practice 09.26.

01 Oct Aurora Saturday 13:00 Python Practice 09.26.

Question:
Use input() to take 10 input from user, each item is separated by space. Then try to complete the following task:

    1. Create a list from the input
    2. 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
No Comments

Sorry, the comment form is closed at this time.