• Python内置类型(6)——生成器

    ...

    2018-06-17 23:59:40

  • Python的文件类型和字符串

    ...

    2018-06-17 23:59:39

  • python 字符串操作二 内建函数

    一、查看字符串的内建函数 dir(str)['__add__', '__class__', '__contains__', '__delattr__', '__dir__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__getitem__', '__getnewargs__', '__gt__', '__hash__', '__init__', '__init_subclass_...

    2018-06-17 23:59:34

  • Python 简介与入门

    Python 简介 Python (英国发音:/?pa?θ?n/ 美国发音:/?pa?θɑ?n/), 是一种面向对象的解释型计算机程序设计语言,由荷兰人Guido van Rossum于1989年发明,第一个公开发行版发行于1991年。 Python应用于众多领域,如:数据分析、组件集成、网络服务、图像处理、数值...

    2018-06-17 23:59:36

  • 求解斐波那契数

    ...

    2018-06-17 23:59:34

  • Matplotlib库的使用

    *可通过dpi修改输出质量 plot函数 第一种方法会使图中所有的字体改变,而第二种方法只会改变中文字体,推荐使用第二种方法。...

    2018-06-17 23:59:31

  • jquery基础

    1. jquery 安装 可以从jquery.com下载jQuery库,链接:http://jquery.com/download/ 或者从CDN中载入jQuery,如从goole中加载jquery script src= " http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js " /script 2. jquery简介 jquery库是一个javascri...

    2018-06-17 23:59:30

  • python 类型转换总结

    一、数字和字符串 ord( ' a ' ) # ascii码 97 chr(97 ) ' a ' hex(16 ) # 16进制数 ' 0x10 ' int( ' 0x10 ' , 16 ) 16 oct(16 ) # 8进制数 ' 0o20 ' int( ' 0o20 ' , 8 ) 16 bin(16 ) # 2进制数 ' 0b10000 ' int( ' 0b10000 ' , 2 ) 16 str(16 ) # 10进制数 ' 16 ' int...

    2018-06-17 23:59:17

  • python 字符串操作一

    一、创建字符串 s1 = '12345' s1'12345' s2 = str(12345) s2'12345' s3 = str([1, 2, 3, 4, 5]) s3'[1, 2, 3, 4, 5]' s4 = str({'one': 1, "two": 2, "three": 3}) s4"{'one': 1, 'two': 2, 'three': 3}" 二、格式化字符串 第一种方式: s1 = 'wang' s2 = 10 s3 = 'hel...

    2018-06-17 23:59:25

  • NumPy入门

    import numpy as np 数组与标量之间的运算作用于数组的每一个元素....

    2018-06-17 23:59:25

2