码迷,mamicode.com
首页 > 编程语言 > 详细

python基础学习-内置函数

时间:2016-08-16 09:16:05      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:

#!/usr/bin/env python # -*- coding:utf-8 -*- 系统内置函数

n =abs(-1) #绝对值

print(n)

#bytes()函数

s="离开"

re= bytes(s,encoding="utf-8")  # bytes() 把字符串 转换成字节

print(re)

res = str(re,encoding="utf-8") #转换回字符串

print(res) re= bytes(s,encoding="gbk")# bytes() 把字符串 转换成字节

print(re)

#open函数 文件操作  3步 打开文件 操作文件 关闭文件

#打开文件

# r-只读

# w-只写,先清空原文件,在写入

# x-只写 ,如果文件存在报错不存在创建并写内容 a-追加

#以上方式+b 则表示直接读取2进制数据

#r+ 读写

f=open(‘db‘,‘w‘)

f.write("test1,test2,test3,test4")

f.close()

 

f=open(‘db‘,‘a‘)

f.write("/n"+"t1,t2,t3,t4")

f.close()

 

f=open(‘db‘,‘r‘)

rd = f.read()

rdlist = rd.split(‘,‘)

f.close()

print(rdlist)

 

f=open(‘db‘,‘r+‘,encoding=‘utf-8‘)

data = f.read()

index= f.tell()#取得当前指针的位置 永远按字节数 一个汉字3个字节 utf-8

print(index)

f.seek(3)#把指针调整到 参数位置 第一个位置

f.write("888")

f.close()

python基础学习-内置函数

标签:

原文地址:http://www.cnblogs.com/whzym111/p/5775048.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!