Python 文件I/O
本章只讲述所有基本的的I/O函数,更多函数请参考Python标准文档。
打印到屏幕
最简单的输出方法是用print语句,你可以给它传递零个或多个用逗号隔开的表达式。此函数把你传递的表达式转换成一个字符串表达式,并将结果写到标准输出如下:
#!/usr/b...
cdadata
9年前 (2016-07-06) 2708℃
0喜欢
MySQL 导入数据
关键词:mysql导入数据表、mysql导入sql文件、mysql 导入数据库、mysql 导入数据命令、mysql导入数据库命令
MySQL中可以使用两种简单的方式来导入MySQL导出的数据。
使用 LOAD DATA 导入数据
MySQL 中提供了LO...
cdadata
9年前 (2016-07-06) 3039℃
1喜欢
Python 模块
关键词:python 模块安装、python 模块下载、python模块大全、python模块学习、python 模块路径、python 常用模块、python 自定义模块、python logging模块
模块让你能够有逻辑地组织你的Python代码段。
把...
cdadata
9年前 (2016-07-06) 2898℃
0喜欢
Python 函数
关键词:python 函数定义、python 函数参数、python函数手册、python 函数调用、python 函数返回值、python 内置函数、python函数参数传递、python split函数
函数是组织好的,可重复使用的,用来实现单一,或相关联...
cdadata
9年前 (2016-07-06) 2736℃
1喜欢
Python 日期和时间
关键词:python 时间戳转日期、python 日期时间、python 当前日期时间、python 日期加减、python日期格式化、python 获取当前日期
Python 程序能用很多方式处理日期和时间,转换日期格式是一个常见的功能。
Python...
cdadata
9年前 (2016-07-06) 4063℃
1喜欢
Python 字典(Dictionary)
关键词:字典dictionary、python dictionary、python dictionary u、python的dictionary、python中dictionary、python 字典、python 遍历字典、pytho...
cdadata
9年前 (2016-07-06) 3075℃
0喜欢
Python 元组
关键词:python元组操作、python 元组 添加元素、python 元祖、python 元组 列表、python 元组转list、python 元组遍历、python 元组转字符串
Python的元组与列表类似,不同之处在于元组的元素不能修改。
元组使用...
cdadata
9年前 (2016-07-06) 7310℃
1喜欢
Python 列表(List)
关键词:python list、清空列表 python list、python list 操作、python list 长度、python list 排序、 python list sort、python list 合并、python list a...
cdadata
9年前 (2016-07-06) 2944℃
0喜欢
Python 字符串
关键词:python 字符串截取、python 字符串替换、python 字符串连接、python 字符串比较、python字符串转数字、python 字符串查找、python 字符串分割、python 字符串操作、python 字符串拼接
字符串是 Pyt...
cdadata
9年前 (2016-07-06) 4190℃
1喜欢
Python Number(数字)
关键词:python is number、python number
Python Number 数据类型用于存储数值。
数据类型是不允许改变的,这就意味着如果改变 Number 数据类型的值,将重新分配内存空间。
以下实例在变量赋值时 Num...
cdadata
9年前 (2016-07-06) 2618℃
0喜欢