不要自卑,去提升实力
互联网行业谁技术牛谁是爹
如果文章可以带给你能量,那是最好的事!请相信自己
加油o~
本人初学Python,只为熟悉语法编写,大神请勿理会
点击下面链接
Python经典编程100例习题汇总
题目描述:
回答结果(结构体变量传递)。
解题思路:
>
代码:
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)