2018.05
文章平均质量分 84
tankloverainbow
这个作者很懒,什么都没留下…
展开
-
[python]Magic Methods and Operator Overloading
https://www.python-course.eu/python3_magic_methods.php本文用实例介绍Magic Methods 和 Operator Overloading。转载 2018-05-10 22:15:02 · 390 阅读 · 0 评论 -
[python]一个特别好的学习python网站
这是一个学习python特别好的网站,其中关于讲解class的部分有图例展示,形象生动。网址为:https://www.python-course.eu/python3_course.php关于class的章节:转载 2018-05-10 22:25:16 · 7553 阅读 · 0 评论 -
[python]bokeh学习总结——dashboard例子学习
在bokeh官网关于Laying out Plots andWidgets的介绍中,引出一个关于boarddash的例子,在该例子中介绍了bokeh.layouts模块中的layoutbokeh.models模块中的CustomJS、Slider、ColumnDataSource、WidgetBoxlayout的作用是将不同的图像按照不同的样式来摆放。CustomJS的作用是引入JavaScrip...原创 2018-05-26 19:17:30 · 3464 阅读 · 0 评论 -
[python]bokeh学习总结——bokeh.io
我们先看一个例子:from bokeh.plotting import figure, output_file, show output_file("patch.html") p = figure(plot_width=400, plot_height=400) # add a patch renderer with an alpha an line width ...原创 2018-05-26 20:06:03 · 2237 阅读 · 0 评论 -
[python]bokeh学习总结——bokeh.layouts
如果希望在同一张图上显示多个图像,可以使用bokeh.layouts类中的方法:row()column()gridplot()widgetbox()layout()row()row()的作用是将多个图像以行的方式放到同一张图中。from bokeh.io import output_file, showfrom bokeh.layouts import rowfrom bokeh.plotti...原创 2018-05-26 21:00:47 · 4512 阅读 · 0 评论 -
[python]在类中使用@property
关于在类中使用@property网上教程都介绍了许多,我从另一个方向解释一下在类中使用@property。下面是一个例子,创建一个Person类,在age方法的定义前加上@property,在name方法的定义前没有加上@property:class Person(object): def __init__(self, age = 1, name = 'yy'): self...原创 2018-05-27 11:48:05 · 563 阅读 · 0 评论 -
[python]装饰器的用法
Step1先从一个小例子开始,然后逐步引出装饰器的作用。def name(name = 'James'): print('My name is {}.'.format(name)) name()输出结果为:My name is James.如果此时想在打印“My name is...”之前加上打招呼的语句,且不能修改name()函数,就可以使用装饰器。def greeti...原创 2018-05-27 20:07:29 · 314 阅读 · 0 评论 -
[python]bokeh学习总结——QuickStart
bokeh是python中一款基于网页的画图工具库,画出的图像以html格式保存。一个简单的例子:from bokeh.plotting import figure, output_file, showoutput_file("patch.html")p = figure(plot_width=400, plot_height=400)# add a patch renderer wi...原创 2018-05-24 21:22:35 · 18287 阅读 · 3 评论