Python Forum
Python - List - Int List
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Python - List - Int List
#4
I think the hint "As a parent class you can use list." is a good hint. What other methods does list have?
Output:
>>> x = list() >>> print("\n".join(dir(x))) __add__ __class__ __contains__ __delattr__ __delitem__ __dir__ __doc__ __eq__ __format__ __ge__ __getattribute__ __getitem__ __gt__ __hash__ __iadd__ __imul__ __init__ __init_subclass__ __iter__ __le__ __len__ __lt__ __mul__ __ne__ __new__ __reduce__ __reduce_ex__ __repr__ __reversed__ __rmul__ __setattr__ __setitem__ __sizeof__ __str__ __subclasshook__ append clear copy count extend index insert pop remove reverse sort
Which of these many methods can put a value in the list? append() is a start, but there are others.
Reply


Messages In This Thread
Python - List - Int List - by sophi - Apr-20-2022, 11:24 AM
RE: Python - List - Int List - by Larz60+ - Apr-20-2022, 01:11 PM
RE: Python - List - Int List - by sophi - Apr-20-2022, 01:16 PM
RE: Python - List - Int List - by deanhystad - Apr-20-2022, 05:03 PM
RE: Python - List - Int List - by sophi - Apr-20-2022, 06:59 PM
RE: Python - List - Int List - by deanhystad - Apr-20-2022, 10:02 PM
RE: Python - List - Int List - by sophi - Apr-21-2022, 07:35 PM
RE: Python - List - Int List - by deanhystad - Apr-21-2022, 07:52 PM
RE: Python - List - Int List - by sophi - Apr-21-2022, 07:55 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  How to parse and group hierarchical list items from an unindented string in Python? ann23fr 1 488 May-23-2024, 05:39 AM
Last Post: Pedroski55
  how to reverse a list and store in another list in python SuperNinja3I3 6 3,454 Aug-14-2022, 06:36 PM
Last Post: DeaD_EyE
  question on list in Python spalisetty06 1 2,107 Jun-30-2020, 09:03 AM
Last Post: pyzyx3qwerty
  Python list exercize ESTOUR 3 2,011 May-23-2020, 11:10 PM
Last Post: ESTOUR
  Python Adding +1 to a list item cointained in a dict ElReyZero 1 2,136 Apr-30-2020, 05:12 AM
Last Post: deanhystad
  Check if a list exists in given list of lists Daniel94 2 2,326 Apr-07-2020, 04:54 PM
Last Post: deanhystad
  list of strings to list of float undoredo 3 2,774 Feb-19-2020, 08:51 AM
Last Post: undoredo
  arrays sum list unsupported operand type(s) for +=: 'int' and 'list' DariusCG 7 4,376 Oct-20-2019, 06:24 PM
Last Post: Larz60+
  have homework to add a list to a list using append. celtickodiak 2 2,093 Oct-11-2019, 12:35 PM
Last Post: ibreeden
  Search character from 2d list to 2d list AHK2019 3 2,563 Sep-25-2019, 08: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