TORONTO KIDS COMPUTER CLUB | Tuesday 17:00 Python Practice – 22.03.29.
20492
post-template-default,single,single-post,postid-20492,single-format-standard,ajax_fade,page_not_loaded,,no_animation_on_touch,qode-theme-ver-7.6.2,wpb-js-composer js-comp-ver-6.10.0,vc_responsive

Tuesday 17:00 Python Practice – 22.03.29.

31 Mar Tuesday 17:00 Python Practice – 22.03.29.

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
No Comments

Sorry, the comment form is closed at this time.