E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
PythonStudy
python练手_94-time模块IV
#-*-coding:utf-8-*-#@Author:CH"""@project:
pythonstudy
@time:2019/1/9-20:18@file_name:【程序94】time模块IV.py
学子CH
·
2020-07-02 06:44
python练手_43-作用域、类的方法与变量
#-*-coding:utf-8-*-#@Author:CH"""@project:
pythonstudy
@time:2019/1/7-23:12@file_name:【程序43】作用域、类的方法与变量
学子CH
·
2020-06-29 02:50
python练手_58-画矩形
#-*-coding:utf-8-*-#@Author:CH"""@project:
pythonstudy
@time:2019/1/7-23:52@file_name:【程序58】画矩形.py@IDE:
学子CH
·
2020-06-27 21:14
PythonStudy
——汇编语言 Assembly Language
汇编语言汇编语言(assemblylanguage)是一种用于电子计算机、微处理器、微控制器或其他可编程器件的低级语言,亦称为符号语言。在汇编语言中,用助记符(Mnemonics)代替机器指令的操作码,用地址符号(Symbol)或标号(Label)代替指令或操作数的地址。在不同的设备中,汇编语言对应着不同的机器语言指令集,通过汇编过程转换成机器指令。普遍地说,特定的汇编语言和特定的机器语言指令集是
aiyi1882
·
2020-06-22 13:45
PythonStudy
——高级语言 High-level programming language
高级语言高级语言(High-levelprogramminglanguage)相对于机器语言(machinelanguage,是一种指令集的体系。这种指令集,称机器码(machinecode),是电脑的CPU可直接解读的数据)而言。是高度封装了的编程语言,与低级语言相对。它是以人类的日常语言为基础的一种编程语言,使用一般人易于接受的文字来表示(例如汉字、不规则英文或其他外语),从而使程序编写员编写
aiyi1882
·
2020-06-22 13:45
PythonStudy
——生成器 Generator
#生成器:自定义的迭代器对象#--就是用函数语法来声明生成器,用yield关键字取代return关键字来返回值,参数没有多少变化#总结:有yield关键字的函数,函数名()不是调用函数,而是生成得到生成器对象,生成器对象就是迭代器对象,可以通过__next__()进行取值#执行流程:deffn():yield1yield3yield5obj=fn()obj.__next__()#从开始往下执行,遇
aiyi1882
·
2020-06-22 13:14
PythonStudy
——Python字典底层实现原理 The underlying implementation principle of Python dictionary...
在Python中,字典是通过散列表或说哈希表实现的。字典也被称为关联数组,还称为哈希数组等。也就是说,字典也是一个数组,但数组的索引是键经过哈希函数处理后得到的散列值。哈希函数的目的是使键均匀地分布在数组中,并且可以在内存中以O(1)的时间复杂度进行寻址,从而实现快速查找和修改。哈希表中哈希函数的设计困难在于将数据均匀分布在哈希表中,从而尽量减少哈希碰撞和冲突。由于不同的键可能具有相同的哈希值,即
aiyi1882
·
2020-06-22 13:14
python练手_56-画圈
#-*-coding:utf-8-*-#@Author:CH"""@project:
pythonstudy
@time:2019/1/7-23:44@file_name:【程序56】画圈.py@IDE:PyCharm
学子CH
·
2020-06-22 07:53
python练手_64-画椭圆、矩形
#-*-coding:utf-8-*-#@Author:CH"""@project:
pythonstudy
@time:2019/1/7-23:56@file_name:【程序64】画椭圆、矩形.py@IDE
学子CH
·
2020-06-21 16:51
python练手_63-画椭圆
#-*-coding:utf-8-*-#@Author:CH"""@project:
pythonstudy
@time:2019/1/7-23:55@file_name:【程序63】画椭圆.py@IDE:
学子CH
·
2020-06-21 02:47
PythonStudy
——机器语言 Machine Language
编程语言编程语言(programminglanguage),是用来定义计算机程序的形式语言。它是一种被标准化的交流技巧,用来向计算机发出指令。一种计算机语言让程序员能够准确地定义计算机所需要使用的数据,并精确地定义在不同情况下所应当采取的行动。1、机器语言:直接编写二进制指令的编程方式机器语言(machinelanguage)是一种指令集的体系。这种指令集,称机器码(machinecode),是电
aiyi1882
·
2020-06-20 23:46
python练手_65-画组合图形
#-*-coding:utf-8-*-#@Author:CH"""@project:
pythonstudy
@time:2019/1/7-23:57@file_name:【程序65】画组合图形.py@IDE
学子CH
·
2020-04-11 05:34
python练手_41-类的方法与变量
#-*-coding:utf-8-*-#@Author:CH"""@project:
pythonstudy
@time:@detail:@else:DONOTSTOPSTUDYING!!!"""
学子CH
·
2020-04-10 21:29
python练手_35-设置输出颜色
#-*-coding:utf-8-*-#@Author:CH"""@project:
pythonstudy
@time:@detail:@else:DONOTSTOPSTUDYING!!!"""
学子CH
·
2020-04-01 12:18
python练手_87-访问类成员
#-*-coding:utf-8-*-#@Author:CH"""@project:
pythonstudy
@time:2019/1/9-20:05@file_name:【程序87】访问类成员.py@IDE
学子CH
·
2020-03-19 02:02
【python练手-01】题目:有1、2、3、4个数字,能组成多少个互不相同且无重复数字的三位数?都是多少?
#-*-coding:utf-8-*-#@Author:CH"""@project:
pythonstudy
@time:@detail:@else:DONOTSTOPSTUDYING!!!"""
学子CH
·
2020-03-14 20:37
python练手_82-八进制转十进制
#-*-coding:utf-8-*-#@Author:CH"""@project:
pythonstudy
@time:2019/1/9-19:54@file_name:【程序82】八进制转十进制.py@
学子CH
·
2020-03-14 04:15
python练手_60-字符串长度
#-*-coding:utf-8-*-#@Author:CH"""@project:
pythonstudy
@time:2019/1/7-23:53@file_name:【程序60】字符串长度.py@IDE
学子CH
·
2020-03-04 23:56
python练手_86-连接字符串II
#-*-coding:utf-8-*-#@Author:CH"""@project:
pythonstudy
@time:2019/1/9-20:04@file_name:【程序86】连接字符串II.py@
学子CH
·
2020-03-02 22:52
python练手_17-字符串构成
#-*-coding:utf-8-*-#@Author:CH"""@project:
pythonstudy
@time:@detail:@else:DONOTSTOPSTUDYING!!!"""
学子CH
·
2020-02-29 14:52
python练手_70-字符串长度II
#-*-coding:utf-8-*-#@Author:CH"""@project:
pythonstudy
@time:2019/1/8-0:01@file_name:【程序70】字符串长度II.py@IDE
学子CH
·
2020-02-23 14:52
python练手_84-连接字符串
#-*-coding:utf-8-*-#@Author:CH"""@project:
pythonstudy
@time:2019/1/9-20:01@file_name:【程序84】连接字符串.py@IDE
学子CH
·
2020-02-22 12:57
python练手_62-查找字符串
#-*-coding:utf-8-*-#@Author:CH"""@project:
pythonstudy
@time:2019/1/7-23:54@file_name:【程序62】查找字符串.py@IDE
学子CH
·
2020-02-22 12:44
python练手_79-字符串排序
#-*-coding:utf-8-*-#@Author:CH"""@project:
pythonstudy
@time:2019/1/9-19:50@file_name:【程序79】字符串排序.py@IDE
学子CH
·
2020-02-16 14:28
Linux下查看txt文件出现乱码
解决方法一:在Linux终端输入:iconv-fgbk-tutf8
PythonStudy
.txt>Python.txt.utf8在当前目录
Tester_miao
·
2019-12-26 14:06
OSError: cannot open resource 错误原因及解决方法
问题代码|importwordcloud,jiebaf=open('F:/
PythonStudy
/新时代中国特色社会主义.txt','r',encoding='utf-8')t
陆离_
·
2019-06-29 16:54
Python
PythonStudy
——单线程并发的实现
#使用yield实现单线程并发多个任务#引子:生成器回顾#deffunc1():#print('1')#yield#print('2')#yield#print('3')#yield#res=func1()#print(res)##next(res)#1#next(res)#2#next(res)#3#------------------------------------------------
VentiFang
·
2019-06-08 15:00
Scrapy爬取ammmi图片
Pycharmenvironment:windows10Framework:Scrapy相关链接:Website:github:https://github.com/daorenfeixueyuhua/
PythonStudy
.gitProjectName
刀刃飞雪玉花
·
2019-03-01 23:14
Python
Scrapy
详细讲述各种占位符的应用-Python之%s%d%f资料
详细讲述各种占位符的应用#-*-coding:utf-8-*-#@Author:CH"""@project:
pythonstudy
@time:@detail:@else:DONOTSTOPSTUDYING
学子CH
·
2019-02-23 21:49
python练手_53-按位异或
#-*-coding:utf-8-*-#@Author:CH"""@project:
pythonstudy
@time:2019/1/7-23:40@file_name:【程序53】按位异或.py@IDE
学子CH
·
2019-02-17 17:33
python练手_44-矩阵相加
#-*-coding:utf-8-*-#@Author:CH"""@project:
pythonstudy
@time:2019/1/7-23:13@file_name:【程序44】矩阵相加.py@IDE
学子CH
·
2019-02-17 17:39
python练手_38-矩阵对角线之和
#-*-coding:utf-8-*-#@Author:CH"""@project:
pythonstudy
@time:@detail:@else:DONOTSTOPSTUDYING!!!"""
学子CH
·
2019-02-17 17:03
python:os模块
path)返回path的绝对路径#获取当前工作环境的绝对路径,不包括文件名cur_path=os.path.abspath('.')print(cur_path)#结果F:\PythonWorkSpace\
PythonStudy
rr1990
·
2019-02-13 15:26
分布式集群入门
elasticsearch-rtfelasticsearch-head端口:http://127.0.0.1:9200/端口:http://localhost:9100/启动命令:启动elasticsearch:启动head:修改配置文件:E:\
pythonStudy
哎一入江湖岁月催
·
2018-04-27 12:13
Hadoop
Python
python笔记6:数据处理之导入数据
和数据库中#1.导入csv文件(第一行是列名)frompandasimportread_csv#文件的编码格式也应该是utf-8才行,否则报错df=read_csv('D:/python/workspace/
pythonStudy
aiyo92
·
2018-01-22 17:49
python
Python 类、函数、实参、形参、实例
1、类:Class类名:2、函数:def函数名(参数):3、形参、实参函数里面行参的默认值设置,有默认值的一定要放在最后面参考网址:http://www.cnblogs.com/
pythonstudy
/
普普通通的我
·
2017-05-31 22:27
Python 类、函数、实参、形参、实例
1、类:Class类名:2、函数:def函数名(参数):3、形参、实参函数里面行参的默认值设置,有默认值的一定要放在最后面参考网址:http://www.cnblogs.com/
pythonstudy
/
普普通通的我
·
2017-05-31 22:27
nginx location URI匹配规则
转载于:https://www.cnblogs.com/
pythonstudy
/p/6686915.html
aocheng6822
·
2017-04-09 22:00
运维
Python study -格式化字符串
Pythonstudy
-格式化字符串字符串格式化与字符串连接的比较>>>count=6>>>print"countis%d"%(count,)countis6>>>print"countis%s"%(count
·
2009-05-14 11:00
Python study- List extend() and append()
Pythonstudy
-Listextend()andappend()1.listextend(扩展)与append(追加)的差别>>>li=['a','b']>>>li.extend(['c','d'
·
2009-05-14 11:00
上一页
1
2
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他