HOME/Articles/

simple python-example-41 (snippet)

Article Outline

Python example 'python-example-41'

Functions in program:

  • def varfunc():

python-example-41

Python example: python-example-41

#!/usr/bin/python
# -*- coding: UTF-8 -*-

def varfunc():
    var = 0
    print('var = %d' % var)
    var += 1
if __name__ == '__main__':
    for i in range(3):
        varfunc()

# 类的属性
# 作为类的一个属性吧
class Static:
    StaticVar = 5
    def varfunc(self):
        self.StaticVar += 1
        print(self.StaticVar)

print(Static.StaticVar)
a = Static()
for i in range(3):
    a.varfunc()