python

  • python JSON.parse

    一、JSON的解析方法有两种:eval()和JSON.parse() var jsonstr='{“str1″:”Hello,”, “str2″:”world!”}’; var e…

    python 2022年8月20日
  • python生成随机码-转至武沛齐老师

        Python生成随机验证码,需要使用PIL模块. 安装: 1 pip3 install pillow 基本使用 1. 创建图片 1 2 3 4 5 6 7 8 9 from…

    python 2022年8月20日
  • python将代码打包成whl或者压缩文件使用pip安装

    需要条件:安装setuptools,wheel 创建目录 helloworld—init.py—代码1.py—代码2.pysetup.py 编辑__init__.py from h…

    python 2022年8月20日
  • python中的@的使用

    在python中,@是一个装饰器,针对某个函数,起调用传参的作用。具体怎么用的可以参考如下代码: def A(fn): print(“a”) fn() def B(): print…

    python 2022年8月20日
  • python激活

    Pycharm又过期了怎么办?   方法一:(亲测可用) 1、打开网址: lookdiv.com  2、在输入框输入钥匙:lookdiv.com 3、点击“获取激活码”按钮,获取激…

    python 2022年8月20日
  • 学习:python 程序打包exe文件

    python 程序打包 exe.py 首先要安裝模块 pip install  pyinstaller 按住shift 右鍵  打开命令窗口 -输入命令 intaller -F 文…

    编程笔记 2022年8月20日
  • python-zip()函数-zip*函数-压缩-解压缩

    python-zip()函数-压缩-解压缩 zip()函数: 将多个序列(列表、元组、字典、集合、字符串以及 range() 构成的列表)按一定规则重新组成一组元组。 常与list…

    python 2022年8月20日
  • python数据类型—字典dict

    python数据类型—字典dict 1.基本认识 字典是Python里一种常用的数据类型,键值对,key value对,它用于存放具有映射关系的数据。字典中的数据是无顺…

    python 2022年8月20日
  • Python数据类型

    在Python 3中,有6种标准的数据类型:Number(数字)、String(字符串)、List(列表)、Tuple(元组)、Set(集合)、Dictionary(字典),见表2…

    python 2022年8月20日
  • Pybinder-python与c++的调用

    目录 A really good project. Export Cpp to python uner Linux platform A really good project. …

    python 2022年8月20日