Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
help for list printing
#3
If you are trying to print jp outside of the function (def), it won't work because jp has gone out of scope.

if you return the value, you will be able to print the values
Example:
>>> import random
>>> def toto():
...     jp = []
...     for i in range(4):
...         jp.append(random.randint(1,10))
...     return(jp)
... 
>>> jp = toto()
>>> print(*jp)
3 1 5 7
>>> print(jp[0])
3
>>>
Reply


Messages In This Thread
help for list printing - by jip31 - Apr-29-2021, 09:00 AM
RE: help for list printing - by ibreeden - Apr-29-2021, 10:43 AM
RE: help for list printing - by jip31 - Apr-30-2021, 09:36 AM
RE: help for list printing - by Larz60+ - Apr-29-2021, 10:44 AM
RE: help for list printing - by jip31 - Apr-30-2021, 09:37 AM
RE: help for list printing - by Larz60+ - Apr-29-2021, 10:46 AM
RE: help for list printing - by perfringo - Apr-29-2021, 12:51 PM
RE: help for list printing - by bernardand - Apr-30-2021, 02:17 PM
RE: help for list printing - by Pedroski55 - May-01-2021, 03:52 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
Question Printing through list.. again jesse68 2 1,190 Apr-16-2022, 03:24 PM
Last Post: jesse68
  Problem printing last element from a list tester_V 3 2,466 Oct-30-2020, 04:54 AM
Last Post: tester_V
  Printing empty list? hhydration 2 2,160 Oct-28-2020, 11:34 AM
Last Post: Atekka
  Printing images from a list Heyjoe 4 2,902 Jun-22-2020, 02:28 AM
Last Post: Heyjoe
  printing a list contents without brackets in a print statement paracelx 1 2,170 Feb-15-2020, 02:15 AM
Last Post: Larz60+
  Printing List in one line bharat_s579 6 4,206 May-26-2019, 08:30 PM
Last Post: perfringo
  list is printing incorrectly.. anna 1 2,126 May-18-2019, 12:12 PM
Last Post: ichabod801
  Printing one thing from a list bidoofis 1 2,382 Feb-05-2019, 09:02 PM
Last Post: ichabod801
  Printing a new python list abdallah786 3 98,356 Aug-17-2018, 03:21 PM
Last Post: buran
  [Help] List of Lists not printing both Cmder/Anaconda? vanicci 4 3,643 Aug-15-2018, 03:00 PM
Last Post: vanicci

Forum Jump:

User Panel Messages

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