Skip to main content

Converting back to a dictionary

Syntax:

dict(Node)

This is pretty straightforward, as shown above. The command will make a new dictionary. If you want to directly manipulate a Node's data instead, you can simply perform methods on the called function, likeas so:shown in the section Math, appending, and more.

db = Node("sample.pyn")
db.a = [1, 2, 3]

db.a().append(4)  # <---

print(db.a())  # [1,2,3,4]