Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Newbie lists problem
#5
empty_list = []
first_var = 1

filled_list = empty_list.append(first_var) # here it will append to empty_list and append returns None which is assigned to filled_list
print(filled_list)
print(empty_list)
Output:
None [1] >>>
So your code is equivalent to
empty_list = []
first_var = 1
empty_list.append(first_var)
filled_list = None
print(filled_list)
If you can't explain it to a six year old, you don't understand it yourself, Albert Einstein
How to Ask Questions The Smart Way: link and another link
Create MCV example
Debug small programs

Reply


Messages In This Thread
Newbie lists problem - by LedDiode - Dec-12-2018, 03:58 PM
RE: Newbie lists problem - by ichabod801 - Dec-12-2018, 04:25 PM
RE: Newbie lists problem - by LedDiode - Dec-13-2018, 10:20 AM
RE: Newbie lists problem - by ichabod801 - Dec-13-2018, 02:43 PM
RE: Newbie lists problem - by buran - Dec-13-2018, 02:48 PM
RE: Newbie lists problem - by LedDiode - Dec-16-2018, 08:33 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  very newbie problem on text file zapad 2 1,185 Apr-12-2024, 06:50 PM
Last Post: zapad
  problem with print lists MarekGwozdz 4 1,827 Dec-15-2023, 09:13 AM
Last Post: Pedroski55
  Newbie first problem cima_hurdle 8 5,324 Feb-09-2022, 10:02 PM
Last Post: cima_hurdle
  Split dict of lists into smaller dicts of lists. pcs3rd 3 3,444 Sep-19-2020, 09:12 AM
Last Post: ibreeden
  sort lists of lists with multiple criteria: similar values need to be treated equal stillsen 2 5,387 Mar-20-2019, 08:01 PM
Last Post: stillsen
  Newbie query regarding lists jazmad 5 4,732 Oct-13-2018, 07:58 PM
Last Post: jazmad
  Newbie Ubuntu script problem Kloontor 6 4,947 Sep-24-2018, 03:51 PM
Last Post: Kloontor
  Problem with Lists in Python DEAD_BOT 2 3,931 Aug-26-2018, 06:09 AM
Last Post: DEAD_BOT
  Hey guys, help a newbie out with a list problem. sdezigner 2 3,627 Feb-15-2018, 06:06 PM
Last Post: sdezigner
  newbie problem Pedroski55 3 5,582 Jul-04-2017, 07:31 AM
Last Post: buran

Forum Jump:

User Panel Messages

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