python存储函数 python如何存储数据( 二 )


7、交互操作(2个)
8、文件操作(1个)
9、编译操作(4个)
10、装饰器(3个)
Python如何将生成的代码/函数保存进文件并导入Python具备动态导入module并且执行其中代码的能力python存储函数,所以python存储函数你只要import你保存的东西就可以 , 无需中断你当前的代码执行流 。
python怎么保存生成的图像?要使用python,必须先安装python,一般是2.7版本以上,不管是在windows系统,还是linux系统,安装都是非常简单的 。
要使用python进行各种开发,就必须安装对应的库 。(推荐学习:Python视频教程)
这和matlab非常相似,只是matlab里面叫工具箱(toolbox),而python里面叫库或包 。安装这些库,一般都是使用pip来安装 。
使用python进行数字图片处理 , 还得安装Pillow包 。虽然python里面自带一个PIL(python images library), 但这个库现在已经停止更新了,所以使用Pillow, 它是由PIL发展而来的 。
图片的打开与显示
虽然使用的是Pillow,但它是由PIL fork而来,因此还是要从PIL中进行import. 使用open()函数来打开图片,使用show()函数来显示图片 。
这种图片显示方式是调用操作系统自带的图片浏览器来打开图片,有些时候这种方式不太方便,因此我们也可以使用另上一种方式 , 让程序来绘制图片 。
这种方法虽然复杂了些,但推荐使用这种方法 , 它使用一个matplotlib的库来绘制图片进行显示 。matplotlib是一个专业绘图的库 , 相当于matlab中的plot,可以设置多个figure,设置figure的标题,甚至可以使用subplot在一个figure中显示多张图片 。
python中保存图片的方法:
1、使用io模块的imsave(fname,arr)函数来保存生成的图片 。
第一个参数表示保存的路径和名称,第二个参数表示需要保存的数组变量 。
示例:
2、使用plt.savefig()方法保存
python 字典可以储存函数吗Python中是没有switch的, 所以有时我们需要用switch的用法, 就只能通过if else来实现了. 但if else写起来比较冗长,
这时就可以使用Python中的dict来实现, 比switch还要简洁. 用法如下:
如果是key1的情况就执行func1, 如果是key2的情况就执行func2...(func1, func2...所有的函数的参数形式需要相同),
假设各个函数参数均为(arg1, arg2):
dictName = {"key1":func1, "key2":func2, "key3":func3"...}#字典的值直接是函数的名字,不能加引号dictName[key](arg1, arg2)
示例代码如下:
#!/usr/bin/python#File: switchDict.py#Author: lxw#Time: 2014/10/05import redef add(x, y):return x + ydef sub(x, y):return x - ydef mul(x, y):return x * ydef div(x, y):return x / ydef main():
inStr = raw_input("Please input the easy expression:(e.g. 1 + 2.But 1 + 2 + 3 are not accepted.\n")
inList = re.split("(\W+)", inStr)
inList[1] = inList[1].strip()print("-------------------------")print(inList)print("-------------------------")#Method 1:
if inList[1] == "+":print(add(int(inList[0]), int(inList[2])))elif inList[1] == "-":print(sub(int(inList[0]), int(inList[2])))elif inList[1] == "*":print(mul(int(inList[0]), int(inList[2])))elif inList[1] == "/":print(div(int(inList[0]), int(inList[2])))else:pass
#Method 2:
try:
operator = {"+":add, "-":sub, "*":mul, "/":div}print(operator[inList[1]](int(inList[0]), int(inList[2])))except KeyError:passif __name__ == '__main__':
main()
Output:
PS J:\ python .\switchDict.py
Please input the easy expression:(e.g. 1 + 2.But 1 + 2 + 3 are not accepted.1 + 2
-------------------------['1', '+', '2']-------------------------
3
3PS J:\ python .\switchDict.py
Please input the easy expression:(e.g. 1 + 2.But 1 + 2 + 3 are not accepted.4 - 9

推荐阅读