[内容] Python splite 字符串切割

内容一:splite 的格式

<character string>.splite('<separator>', <split several times>)[<which number of word place>]

内容二:splite 的使用案例

2.1 案例一:以一行行的方式进行分割

# string = string.splite('\n')

(补充:这里以给 string 字符串以一行行的方式进行分割为例)

2.2 案例二:制作表格

# string = string.splite('\t')

(补充:这里以给 string 字符串制成表格为例)

2.3 案例三:以空格的方式进行分割

# string = string.splite()

或者:

# string = string.splite(, -1)

(补充:这里以给 string 字符串以空格的方式进行分割为例)

2.4 案例四:以空格的方式进行分割,并截取第 1 个单词

# string = string.splite()[0]

(补充:这里以给 string 字符串以空格的方式进行分割,并截取第 1 个单词为例)

2.5 案例五:以空格的方式进行分割,并截取最后 1 个单词

# string = string.splite()[-1]

(补充:这里以给 string 字符串以空格的方式进行分割,并截取最后 1 个单词为例)

2.6 案例六:以字母进行分割

# splite = re.split(r"[^A-Za-z]", line.strip())

(补充:这里以给 string 字符串以字母的方式进行分割为例)

(注意:要先导入 re 函数)

2.7 案例七:以冒号 “:” 进行分割

# splite = string.splite(':')

(补充:这里以给 string 字符串以冒号 “:” 的方式进行分割为例)

2.8 案例八:以冒号 “:” 进行分割,只分割 1 次,并从开头开始计数

# splite = string.splite(':', 1)

(补充:这里以给 string 字符串以冒号 “:” 的方式进行分割,只分割 1 次,并从开头开始计数为例)

2.9 案例九:以冒号 “:” 进行分割,只分割 1 次,并从末尾开始计数

# splite = string.rsplite(':', 1)

(补充:这里以给 string 字符串以冒号 “:” 的方式进行分割,只分割 1 次,并从末尾开始计数为例)

[工具] Python 截取某一个 Linux 命令所有行的第一列

介绍

使用方法

1. 在此脚本的分割线内写入相应的内容
2. 给此脚本添加执行权限
3. 用 python3 命令执行此脚本

脚本分割线里的变量

command=’df -h’ #要执行的 Linux 命令

脚本

import subprocess
  
####################### Separator ########################

command='df -h' #Linux command to execute

####################### Separator ########################

info = subprocess.check_output('%s'%command, shell=True)
info = info.decode().strip()

lines = info.split('\n')
for line in lines:

    word = line.split()[0]
    print(word)

[工具] Python 一个脚本调用另一个脚本的函数执行 Linux 命令并返回执行结果

介绍

使用方法

1. 将第 1 个脚本命名为 test_main.py,将第 2 个脚本命名为 test_sub.py,并将它们放在同一个2. 目录下
3. 给此脚本添加执行权限
4. 用 python3 命令执行第 1 个脚本

注意

执行此脚本之前要先安装 ansible 命令,并可以让 ansible 命令控制名为 test 的服务器

第一个脚本

from cpu_sub import *

sename='test'

out1=cpu(sename)
out1=out1.decode().strip()

print(out1)

out2=mem(sename)
out2=out2.decode().strip()

print(out2)

out3=time(sename)
out3=out3.decode().strip()

print(out3)

第二个脚本

import subprocess

def cpu(sname):
    out = subprocess.check_output('ansible -m shell -a \'cat /proc/cpuinfo | egrep "core id|physical id" | tr -d "\n" | sed s/physical/\\nphysical/g | grep -v ^$ | sort | uniq | wc -l\' %s | tail -1'%sname, shell=True)
    return(out)

def mem(sname):
    out = subprocess.check_output('ansible -m shell -a \'free -m\' %s | grep -i mem'%sname, shell=True)
    return(out)

def time(sname):
    out = subprocess.check_output('ansible -m shell -a \'uptime\' %s | tail -1'%sname, shell=True)
    return(out)

[工具] Python 一个脚本调用另一个脚本的函数

介绍

使用方法:
1. 将第 1 个脚本命名为 test_main.py,将第 2 个脚本命名为 test_sub.py,并将它们放在同一个目录下
2. 给此脚本添加执行权限
3. 用 python3 命令执行第一个脚本

第一个脚本

from test_sub import * 

a=2
b=3

out=nsum(a,b)

print(out)

第二个脚本

def nsum(x,y):
    out = x + y
    return(out)

[工具] Python 一个脚本调用另一个脚本

介绍

使用方法

1. 将第 1 个脚本命名为 test_main.py,将第 2 个脚本命名为 test_sub.py,并将它们放在同一个目录下
2. 给 2 个脚本添加执行权限
3. 用 python3 命令执行第 1 个脚本

第一个脚本

import subprocess

test=subprocess.Popen(['python3', './test_sub.py'], stdout=subprocess.PIPE, stderr=subprocess.STDOUT)

out=test.decode().strip()

print(out)

第二个脚本

def sum(a,b):
    return(a + b)

c = 4
b = 2

print(sum(c,b))