无情老甲鱼 发表于 2018-8-18 10:25:58

干货!

Victory12 发表于 2018-8-19 14:53:32

666

777psp 发表于 2018-8-22 15:05:03

好好学习!!!{:5_108:}

guizhixiao 发表于 2018-8-22 16:59:36


很详细,很好。顶个!

pythongxs 发表于 2018-8-22 17:25:43

终于把这些方法记下来了,好像感觉豁然开朗{:5_109:}

chenhan005 发表于 2018-8-23 10:53:34

讲的很易懂!!

江南哎 发表于 2018-8-27 15:59:36

学习了,谢谢小甲鱼老师

果果夏天 发表于 2018-8-27 17:15:25

这些都是需要记住的吗

rtl1998 发表于 2018-8-28 16:30:33

不全,建议自己help(str)看

飘絮11 发表于 2018-9-2 01:08:11

干货,整理到位,谢谢

nbyyzj 发表于 2018-9-6 11:50:11

很难记呀

1501165101 发表于 2018-9-12 17:08:56

很好用

sclzboy 发表于 2018-9-12 23:59:03

我觉得先看视频 剩下的需要的时候在查找吧

kejun0566 发表于 2018-9-14 00:06:42

0.末尾加\或者 整个用()括起来
1.
2.
file1 = open('C:\\windows\\temp\\readme.txt', 'r')
file1 = open(r'C:\windows\temp\readme.txt', 'r')
3.
str1 = '<a href="http://www.fishc.com/dvd" target="_blank">鱼C资源打包</a>'
a=str1.find('www')
b=str1.find('/dvd')
str2=str1
print(str2)

4.str2=str1[-45:-32]

5.fishc
6.
str1 = 'i2sl54ovvvb4e3bferi32s56h;$c43.sfc67o0cm99'
c=0
while c<10:
    str1=str1.replace(str(c),'')
    c=c+1
a=["vv","b","er",";$c","sf"]
for i in a:
    str1=str1.replace(str(i),'')
str1=str1.replace('sl',' l')
str1=str1.replace('ve','ve ')
str1=str1.replace('cm','m')
str1=str1.title()
print(str1)

爱学习的喵 发表于 2018-9-18 17:19:02

def findstr(str1,str2):#计算重复
    count = 0
    length = len(str2)
    for each in range(len(str1)):
      if str1== str2:
            count += 1
    return count

def findstr1(str1,str2):#不计算重复
    count = 0
    length = len(str2)
    start = 0
    while str2 in str1:
      if str1 == str2:
            count+=1
            str1 = str1
    return count

tmd 发表于 2018-9-20 04:43:12

怎么打包起来

1261017506 发表于 2018-9-24 16:49:30

加油,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

1261017506 发表于 2018-9-24 16:50:02

666666666666666666666666666666666666666666

Jonson1986 发表于 2018-9-24 22:27:19

太好了,慢慢学习

onionjh 发表于 2018-9-25 19:59:21

{:5_106:}
页: 24 25 26 27 28 29 30 31 32 33 [34] 35 36 37 38 39 40 41 42 43
查看完整版本: 字符串的方法及注释