Changing name of node

Hi to all,

A really simple question, but I haven’t been able to see a demonstration on how to do so as of yet; how does one change the name of a node? Is it possible to do so?
For example:

    node=render.attachNewNode("a node")
    #finding the node...
    found_node=render.find("**/a node")
    #I want to change the name of the node in the next line to something else....
   

I may have not done enough research, and also, using a tagging system will not help me, it’s either changing the name of the node itself, or coming up with a different way of approaching what I have in mind.

Thanks.

Yes.

node.setName("something")

of course…thanks for bearing with me and my rudimentary questions! I really appreciate it.