第15327题 单选题
选出关于给定Python链表实现代码的正确说法

有关下面Python代码的说法正确的是( )。

class Node:
    def __init__(self, Val, Nxt = None):
        self.Value = Val
        self.Next = Nxt

firstNode = Node(10)
firstNode.Next = Node(100)
firstNode.Next.Next = Node(111,firstNode)
{{ option.label }}
子题{{ index + 1 }} {{ child.type_label }}
{{ option.label }}
✓ 正确 ◐ 部分正确 ✗ 错误
程序运行统计
暂无判题统计
提交{{ questionInfo.stats ? questionInfo.stats.submit_count : 0 }}次 正确率{{ statsAccuracy }}%
答案解析