美文网首页
python函数

python函数

作者: 北沐城歌__ | 来源:发表于2021-02-05 15:40 被阅读0次
文件操作

‘r’只读模式,必须打开一个已有的文件,且只能执行读操作。
‘r+’读+追加模式,可读可写,与‘r’相同之处在于也是必须打开一个已有的文件,不同的是它可写可读,而且写与读不分先 后,即随时都可进行读与写。(写为追加在文件末尾)
‘w’只写模式,打开即默认创建一个新的空文件,当然若打开的是已有文件,则清空文件,且只能执行写操作。
‘w+’写读模式,打开创建新文件,因此需要先把内容写进去在读。即保证文件有内容通过移动光标来读自己想要的部分。
‘a’追加模式,若打开的是已有文件则直接对已有文件操作,若打开文件不存在则创建新文件,只能执行写(追加在后面),不能读。即追加写。
‘a+’追加读写模式,打开文件方式同‘a’一样,写方式也和'a'一样,但是可以读。且是任意时刻读写。需要注意的是你若刚用‘a+’打开一个文件,则不能立即读,因为此时光标已经是文件末尾,除非你把光标移动到初始位置或任意非末尾的位置。

fobj = open('/tmp/mima') 
data = fobj.read()  #read 默认读取全部内容
print(data)
fobj.close()
fobj = open('/tmp/mima')
fobj.read(4) # 适合读取4字节,建议一次读1024的倍数
fobj.readline() # 适合文本文件,读一行
fobj.readlines()  # 适合文本文件,把所有行读到列表中
fobj.close()
--------------
fobj = open('/tmp/mima')
for line in fobj:
    print(line,end=' ')
fobj.close()

   print(line.strip()) # 把末尾的'\n'删掉

函数基础

自定义函数的简单规则:


  • 函数代码块以def关键字开头,后接函数标识符名称和圆括号()

  • 所有传入的参数和自变量都必须放在圆括号内,可以在圆括号中定义参数。

  • 函数的第一行语句可以选择性使用文档字符串,用于存放函数说明。

  • 函数内容以冒号:开始,并且要缩进。

  • return [表达式]结束函数,选择性返回一个值给调用方。不带表达式的return相当于返回None。

  • return有两个作用:
    用来返回函数的运行结果,或者调用另外一个函数。比如max()函数
    函数结束的标志。只要运行了return,就强制结束了函数。return后面的程序都不会被执行。其实,函数不一定有返回值。什么都不返回的函数不包含return语句,或者包含return语句,但没有在return后面指定值。*

def weight(a):
    weight = a / 1000
    print(f'输入的重量为{a}g,转化为的重量为{weight}')
weight(20)

sys.argv的用法

import  sys
list = ['111','222','333']
print(list)
print(list[0])
list1=sys.argv
print(list1)
print(list1[1])
print(list1[2])
-----------------------------------------------------------------
然后运行 
C:\Users\Thinkpad>python E:\python全栈\pycharm代码\Function\sys.py  123 456
['111', '222', '333']
111
['E:\\python全栈\\pycharm代码\\Function\\sys.py', '123', '456']
123
456
C:\Users\Thinkpad>python E:\python全栈\pycharm代码\Function\sys.py  123 456 44 444
['111', '222', '333']
111
['E:\\python全栈\\pycharm代码\\Function\\sys.py', '123', '456', '44', '444']
123
456

这才知道sys.argv[0]接收的是文件名(如果运行文件和运行终端不在同一路径下会接收其的路径及文件名)
sys.argv[1] 接收的的在终端传入的第一个参数
sys.argv[2]接收的的在终端传入的第二个参数

  • 文件内移动
tell() : 返回当前文件指针的位置
fobj.seek(10,0) # 第一个数字是偏移量,第二个是数字的相对位置,0表示文件开头,1表示当前位置,2表示文件的结尾
seek:移动文件指针到不同的位置
函数的传参
import os
import sys
import shutil
import time
localtime = time.strftime("%Y%m%d",time.localtime(()
def word(src_file,origin_line,update_line):
    bak_file = src_file  +  '.bak'  + localtime
    tmp_file = src_file  +  '.temp'
    shutil.copy2(src_file,bak_file)
    with  open(src_file,mode='r')  as fr, open(tmp_file,mode='w')  as fw:
     for line  in fr:
            if  origin_line in line:
                print  "source_line:",line
                fw.write(line.replace(origin_line,update_line))
            else:
                  fw.write(line)
     os.remove(src_file)
     os.rename(tmp_file,src_file)
     print "replace success"
     return

def line_word(src_file,line_key,origin_line,update_line):
   bak_file = src_file + '.bak' +  localtime
   tmp_file = src_file + '.temp'
   shutil.copy2(src_file,bak_file)
   with open(src_file,mode='r')  as fr, open(tmp_file,mode='w')  as fw:
     for line in fr:
         if line_key  in line:
              print   "source_line:",line 
              fw.write(line.replace(origin_line,update_line))
           else: 
                  fw,write(line)
   os.remove(src_file)
   os.rename(tmp_file,src_file)
   print("replace success")
     return

def line_word(src_file,line_key,line_key1,origin_line,update_line):
   bak_file = src_file + '.bak' +  localtime
   tmp_file = src_file + '.temp'
   shutil.copy2(src_file,bak_file)
   with open(src_file,mode='r')  as fr, open(tmp_file,mode='w')  as fw:
     for line in fr:
         if line_key  in line:
              print   "source_line:",line 
              fw.write(line.replace(origin_line,update_line))
           else: 
                  fw,write(line)
   os.remove(src_file)
   os.rename(tmp_file,src_file)
   print("replace success")
     return

if  __name__ == "__main__":
    if  len(sys.argv) == 4:
          src_file,origin_line,update_line = sys.argv[1:]
          word(src_file,origin_line,update_line)
    elif len(sys.argv) == 5:
          src_file , line_key, origin_line , update_line = sys.argv[1:]
          line_word(src_file,line_key,origin_line,update_line)
    elif len(sys.argv) == 6:
          src_file , line_key , line_key1 , origin_line , update_line = sys.argv[1:]
          line_word(src_file,line_key,line_key1,origin_line,update_line)
    else:
          print("传参错误!")
-----------------------------------------
import os
import sys
import shutil
import time

localtime = time.strftime("%Y%m%d", time.localtime())

def word(src_file,origin_line,update_line):
    bak_file = src_file + '.bak' + localtime
    tmp_file = src_file + '.temp'
    shutil.copy2(src_file, bak_file)
    with open(src_file, mode='r') as fr, open(tmp_file, mode='w') as fw:
        for line in fr:
            if origin_line in line:
                print "source_line:", line
                fw.write(line.replace(origin_line, update_line))
            else:
                fw.write(line)
    os.remove(src_file)
    os.rename(tmp_file, src_file)
    print "replace success!"
    return


def line_word(src_file,line_key,origin_line,update_line):
    bak_file = src_file + '.bak' + localtime
    tmp_file = src_file + '.temp'
    shutil.copy2(src_file, bak_file)
    with open(src_file, mode='r') as fr, open(tmp_file, mode='w') as fw:
        for line in fr:
            if line_key  in line:
                print  "source_line:",line
                fw.write(line.replace(origin_line, update_line))
            else:
                fw.write(line)
    os.remove(src_file)
    os.rename(tmp_file, src_file)
    print "replace success!"
    return


if __name__ == "__main__":
    if len(sys.argv)  == 4:
        src_file, origin_line, update_line = sys.argv[1:]
        word(src_file, origin_line, update_line)
    elif len(sys.argv)  == 5:
        src_file, line_key, origin_line, update_line = sys.argv[1:]
        line_word(src_file, line_key, origin_line, update_line)
    else:
        print("传参错误!!!")

相关文章

  • Python - 2017/01/28-函数

    调用python内置函数 函数名(参数) 即可调用python内置函数 help(函数名) 返回python对于函...

  • Python函数式介绍一 - 高阶函数

    Python函数式介绍一 - 高阶函数Python函数式介绍二 - 链式调用 最近为了给朋友推广Python函数式...

  • Python高阶函数学习笔记

    python中的高阶函数是指能够接收函数作为参数的函数 python中map()函数map()是 Python 内...

  • Python学习笔记1

    Python注释 Python变量 Python运算符 Python输入输出 输入函数 输出函数(3.x) ...

  • Python:内置函数

    python的内置函数,匿名函数 内置函数 内置函数就是python给你提供的,拿来直接用的函数,比如print,...

  • 二级Python----Python的内置函数及标准库(DAY

    Python的内置函数 嵌入到主调函数中的函数称为内置函数,又称内嵌函数。 python的内置函数(68个) Py...

  • python3 range() 函数和 xrange() 函数

    python3 range 函数 python3 取消了 xrange() 函数,并且和 range() 函数合并...

  • 7、函数

    1、Python之什么是函数 2、Python之调用函数 Python内置了很多有用的函数,我们可以直接调用。 要...

  • Python入门

    Python3教程 安装Python 第一个Python程序 Python基础 函数 高级特性 函数式编程 模块 ...

  • Python函数详解

    函数是Python里组织代码的最小单元,Python函数包含以下几个部分: 定义函数 调用函数 参数 函数的返回值...

网友评论

      本文标题:python函数

      本文链接:https://www.haomeiwen.com/subject/qvzwtltx.html