鱼C论坛

 找回密码
 立即注册
查看: 2250|回复: 2

[学习笔记] python简单练习

[复制链接]
发表于 2019-4-9 17:42:45 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
>>> str1='I love xixi'
>>> str[:6]
Traceback (most recent call last):
  File "<pyshell#1>", line 1, in <module>
    str[:6]
TypeError: 'type' object is not subscriptable
>>> str1[:6]
'I love'
>>> str1[5]
'e'
>>> str1[:6]+'haha'+str1[6:]
'I lovehaha xixi'
>>> str1[:6]+' haha'+str1[6:]
'I love haha xixi'
>>> str1=str1[:6]+'haha'+str1[6:]
>>> str1
'I lovehaha xixi'
>>> str1='hzuxw'
>>> str1.capitalize()
'Hzuxw'
>>> str2='HELLO'
>>> str2.casefold()
'hello'
>>> str2
'HELLO'
>>> str2.center(20)
'       HELLO        '
>>> str2.count(E)
Traceback (most recent call last):
  File "<pyshell#14>", line 1, in <module>
    str2.count(E)
NameError: name 'E' is not defined
>>> str2.count('E')
1
>>> str2.endswith('O')
True
>>> str3='I\love\you'
>>> str3.expandtabs(20)
'I\\love\\you'
>>> str3.expandtabs(8)
'I\\love\\you'
>>> str3.find('ELL')
-1
>>> str4='Love'
>>> str4.istitle()
True
>>> str4.join('haha')
'hLoveaLovehLovea'
>>> str4.split()
['Love']
>>> str5='        sssaaasssaa    '
>>> str5.strip()
'sssaaasssaa'
>>> str5
'        sssaaasssaa    '
>>> str6=str5.strip('s')
>>> str6
'        sssaaasssaa    '
>>> str6.translate(str.maketrans('s','b'))
'        bbbaaabbbaa    '
>>> str.maketrans('s','b')
{115: 98}
>>> '{0} love {1},{2}'.format('i','fishc','com')
'i love fishc,com'
>>>  '{a} love {b},{c}'.format(a='i',b='fishc',c='com')

SyntaxError: unexpected indent
>>>  "{a} love {b},{c}".format(a='i',b='fishc',c='com')

SyntaxError: unexpected indent
>>>  "{a} love {b},{c}".format(a="i",b="fishc",c="com")

SyntaxError: unexpected indent
>>> '{0} love {1},{2}'.format('i','fishc','com')
'i love fishc,com'
>>>
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2019-4-9 18:14:54 | 显示全部楼层
what?
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2019-4-14 22:54:38 | 显示全部楼层

啥意思。。。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-13 07:47

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表