Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
looking for list help
#2
items = [1, 2, 3]
items.append(4)
print(items)
Output:
[1, 2, 3, 4]
Reply


Messages In This Thread
looking for list help - by tsathvik - Mar-14-2022, 12:03 AM
RE: looking for list help - by Yoriz - Mar-14-2022, 12:27 AM

Forum Jump:

User Panel Messages

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