35. In python, file operation syntax is similar to c.

open(file,'r',……) //the first parameters is necessary, other is optional ,the second parameters is 'r' by default

if you want to open a file, you can use:

f = open('//Users//wyg_mac//Desktop//Account.txt') //if you don't know the path ,you can drag the file to console

if you want to close file ,you can use:

f.close()

next now that we know how to open file and close file ,but how to read file content.

you can use

f.read(size = -1) //read size buffer, if size not define or  minus ,read next buffer , and return as string

f.readline() //open as write mode, if file exist, append at end

if you want to write content to file ,how to achieve it.

f.wirte(str) // put str write file

f.wirtelines(seq) //

f.tell() // return current position

f.seek(offset,from) //from( if is 0, start position,1 current position 2 end position) offset

such as if i want to create a file demo.txt on desktop and write content whth 'write code change world'

f = open(r'/users/wyg_mac/desktop/demo.txt','w')

f.wirte('write code change world')

f.close()

there are something we need to notice:

if a file not exist , as follow ,it will have error:

f = open(r'/users/wyg_mac/desktop/a.txt')  -> error

if file not exist ,you use follow it will be right:

f = open(r'/users/wyg_mac/desktop/a.txt') -> right

//seventh day to study python

36. In python , os module is base and important.

import os

os.getcwd()  //get current file path

-> '/users/wyg_mac/documents'

os.chdir('/users/wyg_mac/desktop')  //change file path

os.getcwd()

-> '/users/wyg_mac/desktop

os.listdir('/users/wyg_mac/desktop')  //list file dir

-> ['demo.txt', '.DS_Store',]

os.mkdir('/users/wyg_mac/desktop/a')

-> create a file named a

os.mkdir('/users/wyg_mac/desktop/a/b')

-> if file a exist ,create file named b in file a, if a not exist ,will have an error

os.makedirs('/users/wyg_mac/desktop/m/n/o')

-> create file m on desktop , m include n , n include o

if file m/n/o ,o include ttt.txt

os.remove('/users/wyg_mac/desktop/m/m/o/ttt.txt')

-> remove ttt.txt according to path

os.rmdir('/users/wyg_mac/desktop/m/n/o')

-> remove o file , if o contain content , error , if not ,remove it.

os.removedirs('path')

->

os.rename('/users/wyg_mac/desktop/a','/users/wyg_mac/desktop/aaa')

-> change file name

os.system(command)

-> command is shell command, such as os.system('cmd')

os.curdir  //current

-> .

os.pardir //

-> ..

such as:

os.listdir(os.curdir' == os.listdir('.')

os.sep   //current os path sep

-> /

os.name //current os name

-> 'posix'

37. os.path

os.path.bastname('/users/wyg_mac')

-> wyg_name

os.path.dirname('/users/wyg_mac/desktop')

-> users/wyg_mac

os.path.join('/users','wyg_mac','desktop')

-> '/users/wyg_mac/desktop'

os.path.split('/users/wyg_mac/desktop/m/n')

-> ('/users/wyg_mac/desktop/m','n')

os.path.splitext('/users/wyg_mac/desktop/m')

-> ('/users/wyg_mac/desktop/m','')

os.path.splitext('/users/wyg_mac/desktop/m.txt')

-> ('/uses/wyg_mac/desktop/m','.txt')

os.path.getsize('/users/wyg_mac/desktop/m.txt')

-> 35

os.path.getctime()

os.path.getmtime()

os.path.getatime()

os.path.mtime('/users/wyg_mac/desktop/m')

-> 1470748934.0

if you don not understand it ,you can use:

import time

time.localtime(os.path.getmtime('/users/wyg_mac/desktop/m'))

-> time.struct_time(tm_year=2016, tm_mon=8, tm_mday=9, tm_hour=21, tm_min=22, tm_sec=14, tm_wday=1, tm_yday=222, tm_isdst=0

os.path.exists('/users/wyg_mac/desktop/m')

-> True

os.path.isabs()  //if if abs path

os.path.isfile()

os.path.isdir()

os.path.ismount()

os.path.islink()

os.path.samefile(,)

38. pickle module ,you can store data to file and read it

import pickle

my_list = [123, 3.14, 'roy' [1, 3]]

pickle_file = open('my_list.txt', 'wb')

pickle.dump(my_list, pickle_file)

pickle_file.close()

pickle_file = open('my_list.txt','rb')

my_list2 = pickle.load(pickle_file)

print(my_list2)

-> [123, 3.14, 'roy', [1, 3]]

Python Base Four的更多相关文章

  1. Python Base of Scientific Stack(Python基础之科学栈)

    Python Base of Scientific Stack(Python基础之科学栈) 1. Python的科学栈(Scientific Stack) NumPy NumPy提供度多维数组对象,以 ...

  2. Python Base One

    //this is my first day to study python, in order to review, every day i will make notes (2016/7/31) ...

  3. Python Base Five

    // 8 day(2016/8/11) 38. In python , it is oop. class Baskball:         def setName(self, name):      ...

  4. Python Base Three

    //sixth day to study python(2016/8/7) 32. In python , there are have an special type dictionary , it ...

  5. Python Base Two

    //fourth day to study python 24. In python , how to create funcation. we can use def to define funca ...

  6. 2019-04-18 Python Base 1

    C:\Users\Jeffery1u>python Python 3.7.3 (default, Mar 27 2019, 17:13:21) [MSC v.1915 64 bit (AMD64 ...

  7. python base 64

    python中base64编码与解码   引言: 在一些项目中,接口的报文是通过base64加密传输的,所以在进行接口自动化时,需要对所传的参数进行base64编码,对拿到的响应报文进行解码: Bas ...

  8. Python Base HTTP Server

    import BaseHTTPServer import cgi, random, sys MESSAGES = [ "That's as maybe, it's still a frog. ...

  9. 基于Python+协程+多进程的通用弱密码扫描器

    听说不想扯淡的程序猿,不是一只好猿.所以今天来扯扯淡,不贴代码,只讲设计思想. 0x00 起 - 初始设计 我们的目标是设计一枚通用的弱密码扫描器,基本功能是针对不同类型的弱密码,可方便的扩展,比如添 ...

随机推荐

  1. Kunernetes集群架构与组件

    架构如图: master节点:主要是集群控制面板的功能,来管理整个集群,包括全局的角色,调度,都是在master节点进行控制 有三个组件: API Server:  是 k8s提供的一个统一入口,它是 ...

  2. 2018.2.14 Java中的哈夫曼编码

    概念 哈夫曼编码(Huffman Coding),又称霍夫曼编码,是一种编码方式,哈夫曼编码是可变字长编码(VLC)的一种.Huffman于1952年提出一种编码方法,该方法完全依据字符出现概率来构造 ...

  3. 解决sublime text 2总是在新窗口中打开文件(标签中打开)

    在mac下不是很喜欢sublime text 2 总是在新窗口中打开文件,很麻烦,文件打多了,就会出现N多窗口,虽然可以直接打开当前目录可以解决,但有时候查看其它项目中的单个文件,就比较麻烦.百度一直 ...

  4. java基础—static关键字

    一.static关键字

  5. 从 Objective-C 里的 Alloc 和 AllocWithZone 谈起

    一.问题起源 一切起源于Apple官方文档里面关于单例(Singleton)的示范代码:Creating a Singleton Instance.主要的争议集中在下面这一段: static MyGi ...

  6. matlplotlib根据函数画出图形

    根据函数画出函数的轨迹 import matht = np.linspace(0, math.pi, 1000)x = np.sin(t)y = np.cos(t) + np.power(x, 2.0 ...

  7. Linux常用文档操作命令--2

    4.文档压缩与解压操作 在Linux中常见的压缩文件有:*.tar.gz.*.tgz.*.gz.*.Z.*bz2等.其每种不同的压缩文件对印的压缩和解压命令也不同. *.tar.gz :tar程序打包 ...

  8. LeetCode之Weekly Contest 102

    第一题:905. 按奇偶校验排序数组 问题: 给定一个非负整数数组 A,返回一个由 A 的所有偶数元素组成的数组,后面跟 A 的所有奇数元素. 你可以返回满足此条件的任何数组作为答案. 示例: 输入: ...

  9. 图解一致性协议2PC和3PC

    原图地址:https://www.processon.com/diagraming/5b89f6ace4b0d4d65bf10786

  10. VNC远程登录端使用经验之一

    1.vnc/xmanager都是经常用的远程登录软件.vnc有个缺点就是他的进程不会自动退出比如如果开了PID1再去开PID2...PIDn.那么前面的PIDn-1个进程就会一直运行如果不手动kill ...