Python Forum
Problem in list manipulation
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Problem in list manipulation
#2
I can't generate the events, but if I comment out the event_generate lines, then it appears to work.

...
my_list = BindableList()
my_list.append(1)
my_list.append(2)
my_list.append(3)

print(f"Before: {my_list}")
my_list.remove(2)
print(f"After: {my_list}")
Output:
Before: [1, 2, 3] After: [1, 3]
Reply


Messages In This Thread
Problem in list manipulation - by CyKlop - Oct-17-2021, 04:41 PM
RE: Problem in list manipulation - by bowlofred - Oct-17-2021, 09:00 PM
RE: Problem in list manipulation - by CyKlop - Oct-17-2021, 09:54 PM
RE: Problem in list manipulation - by deanhystad - Oct-18-2021, 03:42 AM
RE: Problem in list manipulation - by CyKlop - Oct-18-2021, 04:27 AM
RE: Problem in list manipulation - by deanhystad - Oct-18-2021, 08:44 AM
RE: Problem in list manipulation - by DeaD_EyE - Oct-18-2021, 09:03 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Problem with "Number List" problem on HackerRank Pnerd 5 2,176 Apr-12-2022, 12:25 AM
Last Post: Pnerd
  optimization problem for dataframe manipulation fimmu 0 1,503 Aug-31-2020, 06:02 PM
Last Post: fimmu
  How to pass a list by value for manipulation within a process? bRitch022 4 2,802 Jul-09-2020, 07:13 PM
Last Post: bRitch022
  IP string manipulation problem TheRealNoob 12 7,491 Feb-04-2019, 09:29 AM
Last Post: perfringo
  list manipulation cameronwood611 3 3,636 Oct-03-2017, 02:58 PM
Last Post: ichabod801
  list or dictionary manipulation dtigue 5 116,214 Jul-21-2017, 03:14 PM
Last Post: ichabod801

Forum Jump:

User Panel Messages

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