python-字符串的处理

Posted tarzen213

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python-字符串的处理相关的知识,希望对你有一定的参考价值。

s1 = ###12314##231###
print(s1.split(#))  #split,从左往右遇见# 就拆分一次[‘‘, ‘‘, ‘‘, ‘12314‘, ‘‘, ‘231‘, ‘‘, ‘‘, ‘‘]

print(s1.strip(#))  #strip 去除两侧的 #  12314##231
print(s1.lstrip(#))  #lstrip 去除左侧的   12314##231###
print(s1.rstrip(#))  #rstrip 去除右侧的

print(s1.replace(#,‘‘))  #replace是代替的意思,把所有的#都换成空  12314231
print(s1.replace(123,666))

s2 = abcABC
print(s2.lower())  #lower()  全变成小写
print(s2.upper())
print(s2.endswith(C))
print(s2.startswith(A))
print(s2.title())   #首字母大写Abcabc
print(s2.count(a))

l1 = list(666)
print(,.join(l1))  #以,将l1拼接在一起成字符串6,6,6
print(:.join(s2)) #a:b:c:A:B:C
import os
path = os.getcwd()  #获取文件夹路径(不包含文件名)
print(path)
print(os.path.realpath(__file__))  #获取该文件的路径F:\asus\auto_file\unittest_html\list1.py
print(os.path.basename(os.path.realpath(__file__)))  #获取文件名
print(os.path.dirname(os.path.realpath(__file__)))  #和os.getcwd()一样的,但是要传参数
print(os.path.join(path,os.path.basename(os.path.realpath(__file__)))) #os.path.join()拼接路径

------------------------------------------

‘‘‘
需求是这样的,假如需要测一个输入框最大能输入250汉字,怎么来创造这250汉字
‘‘‘

import sys
import random
def fun(n):
i = 0
l = [‘我‘,‘你‘,‘她‘]
l1 = []
while i<int(n):
a = random.choice(l)
l1.append(a)
i+=1

s = ‘‘.join(l1)

print(s)

if __name__ == ‘__main__‘:
if len(sys.argv) == 2:
n = sys.argv[1]
fun(n)
 

 

以上是关于python-字符串的处理的主要内容,如果未能解决你的问题,请参考以下文章

Python之路:字符串处理

python字符串处理

python的字符串处理函数

python基础字符串处理

Python字符处理

Python字符串处理方法