元组

元组和列表的区别:列表可修改,元组不可修改

ps:多返回函数,返回的是一个元组

def example():

    ……return ax bx

turple = example() = (ax, bx)

你可能感兴趣的:(元组)