python练手_87-访问类成员
2019-02-18 本文已影响0人
学子CH
# -*- coding:utf-8 -*-
# @Author: CH
"""
@project: python study
@time:2019/1/9-20:05
@file_name:【程序87】访问类成员.py
@IDE:PyCharm
@else: DO NOT STOP STUDYING!!!
"""
# 题目 回答结果(结构体变量传递)。
# 程序分析 无。
if __name__ == '__main__':
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)#调用先用这个类的名字,再加上函数的名字