Python Forum
Search Results
Post Author Forum Replies Views Posted [asc]
    Thread: How to continue code after .show() in matplotlib?
Post: How to continue code after .show() in matplotlib?

How can i continue my code thats written after .show() in the matplotlib library? There needs to come an input from the user after the plot shown based of what the user sees in the plot, but i cant ge...
jasper100125 General Coding Help 1 9,378 Sep-08-2019, 02:26 PM
    Thread: How to remove multiples in a list
Post: RE: How to remove multiples in a list

Thanks!
jasper100125 General Coding Help 6 3,317 Aug-20-2019, 06:12 AM
    Thread: How to remove multiples in a list
Post: RE: How to remove multiples in a list

I have tried the following: old_list = ['a', 'b', 'a', 'a', 'b'] new_list = [] for i in range(len(old_list)): if old_list[i] not in new_list: new_list.append(old_list[i]) print(new_list...
jasper100125 General Coding Help 6 3,317 Aug-20-2019, 12:27 AM
    Thread: How to remove multiples in a list
Post: How to remove multiples in a list

How can remove something in a list if it appears more than once? examples: list1 = [1, 2, 3, 4, 1] >>>>> list1 = [1, 2, 3, 4] or list2 = ['a', 'b', 'a', 'a'] >>>>> l...
jasper100125 General Coding Help 6 3,317 Aug-19-2019, 02:17 PM

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020