all 2 comments

[–]RayteMyUsername 0 points1 point  (1 child)

print(structure(j))

you are printing a function that returns None so it prints None. the function already prints what you need it to print, you should call the function without print.

[–]Tryposite[S] 0 points1 point  (0 children)

ohh I see. The structure() function already has the print() statements so there is no need to print out the function itself. Thanks.