Python 练习实例42

Python 100例 Python 100例

题目:学习使用auto定义变量的用法。

程序分析:没有auto关键字,使用变量作用域来举例吧。

程序源代码:

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

num = 2
def autofunc():
    num = 1
    print 'internal block num = %d' % num
    num += 1
for i in range(3):
    print 'The num = %d' % num
    num += 1
    autofunc()

以上实例输出结果为:

The num = 2
internal block num = 1
The num = 3
internal block num = 1
The num = 4
internal block num = 1

Python 100例 Python 100例

新闻动态 联系方式 广告合作 招聘英才 安科实验室 帮助与反馈 About Us

Copyright © 2013 - 2019 Ancii.com All Rights Reserved京ICP备18063983号-5 京公网安备11010802014868号