Python 练习

1. 题目

结构体变量传递

2. 分析

3. 实例

点我看答案
class student:
    x = 0
    c = 0


def f(stu):
    stu.x = 20
    stu.c = 'c'


a = student()
a.x = 3
a.c = 'a'
f(a)
print(a.x, a.c)

© 2022 刘士. All rights reserved.

结果匹配 ""

    没有匹配的结果 ""