0x00 前言 大家对http代理应该都非常熟悉,它在很多方面都有着极为广泛的应用。http代理分为正向代理和 […]
Continue reading使用python获取当前日期的格式介绍
在python里如何获取当前的日期和时间呢?在python语言里,我们可以通过调用什么模块或者类函数来得到当前 […]
Continue readingpython学习基础基本数据类型介绍
一、 运算符 1、算数运算: ps: 示例1: python2.7示例 #!/usr/bin/env pyth […]
Continue readingpython魔术方法magicmethod的详细介绍
介绍 在python中,所有以“”双下划线包起来的方法,都统称为“magic method”,例如类的初始 […]
Continue readingpython内置input函数的详细介绍
英文文档: input([prompt]) if the prompt argument is present […]
Continue readingpython内置函数的详细介绍
总结一下内置函数,build-in function。 一、数学运算类 abs(x) 求绝对值 complex […]
Continue readingpython内置hex函数的详细介绍
英文文档: hex(x) convert an integer number to a lowercase h […]
Continue readingpython内置help函数的详细介绍
英文文档: help([object]) invoke the built-in help system. ( […]
Continue readingpython内置hash函数的详细介绍
英文文档: hash(object)return the hash value of the object ( […]
Continue readingpython内置hasattr函数的详细介绍
英文文档: hasattr(object, name) the arguments are an object […]
Continue readingpython内置globals函数的详细介绍
英文文档: globals() return a dictionary representing the cu […]
Continue readingpython内置getattr函数的详细介绍
英文文档: getattr(object, name[, default]) return the value […]
Continue readingpython内置frozenset函数的详细介绍
英文文档: class frozenset([iterable]) return a new frozense […]
Continue readingpython内置format函数详细介绍
英文文档: format(value[, format_spec]) convert a value to a […]
Continue readingpython内置bytes函数的详细介绍
英文文档: class bytes([source[, encoding[, errors]]]) retur […]
Continue reading