Python Forum
Recursions with nested lists
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Recursions with nested lists
#2
In your function, you have:

sumtree+=add_tree(i)
That is equivalent to:

sumtree = sumtree + add_tree(i)
Given that you want to replace a and b in a + b, what matches from your earlier code?
Craig "Ichabod" O'Brien - xenomind.com
I wish you happiness.
Recommended Tutorials: BBCode, functions, classes, text adventures
Reply


Messages In This Thread
Recursions with nested lists - by sashiessay - Oct-04-2019, 03:49 PM
RE: Recursions with nested lists - by ichabod801 - Oct-04-2019, 05:23 PM
RE: Recursions with nested lists - by sashiessay - Oct-05-2019, 11:40 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Sorting nested lists in ascending order jszum 2 2,272 May-17-2020, 01:35 PM
Last Post: jefsummers
  Sum of Nested Lists raifuru42 2 4,351 Feb-19-2018, 02:57 PM
Last Post: mckingstar
  Combine nested lists in output python12345 2 2,791 Feb-17-2018, 01:38 PM
Last Post: python12345
  Nested loops, lists and if statements Liquid_Ocelot 10 8,985 Apr-23-2017, 02:02 PM
Last Post: Mekire

Forum Jump:

User Panel Messages

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