码迷,mamicode.com
首页 > 编程语言 > 详细

python中的函数存入list中的实例

时间:2014-07-09 19:46:27      阅读:208      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   问题   for   

最近由于接触了python这个强大的东西,在写代码时考虑到代码的扩展性,就想到了将python的函数名存入list中。有点像习惯的c/c++中的函数指针的意思。

下面上代码:

 1 # coding=utf-8
 2 #!/usr/bin/python
 3 #脚本的用法 python nn_daemon.py
 4 import json, urllib, urllib2, subprocess, sys, os, logging, time, socket, time, calendar, datetime, ConfigParser, socket, fcntl, struct
 5 from xml.etree import ElementTree
 6 from time import strftime
 7 
 8 def func_1(i):
 9     print "i is %d"%i
10 
11 def func_2(i):
12     print "i is %d"%i
13     
14     
15 if __name__ == __main__:
16     tmp_list = []
17     tmp_list.append(func_1)
18     tmp_list.append(func_2)
19     
20     for i in range(len(tmp_list)):
21         tmp_list[i](i)

结果:

i is 0
i is 1

本菜鸟是python新手,望各种喷。后面会陆续把最近碰到的python问题分享出来。

python中的函数存入list中的实例,布布扣,bubuko.com

python中的函数存入list中的实例

标签:style   blog   color   os   问题   for   

原文地址:http://www.cnblogs.com/xudashu/p/3831600.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!