python新手入门到放弃_python入门笔记(一),从入门到放弃

# 字符串串基本操作

a = 'Life is short, you need Python'

a.lower() # 'life is short, you need

python'

a.upper() # 'LIFE IS SHORT, YOU NEED

PYTHON'

a.count('i') # 2

a.find('e') # 从左向右查找'e',3

a.rfind('need') # 从右向左查找'need',19

a.replace('you', 'I') # 'Life is short, I need Python'

tokens = a.split() # ['Life', 'is', 'short,', 'you',

'need', 'Python']

b = ' ---'.join(tokens) # ⽤用指定分隔符把字符串串列列表组合成新字符串串,

Life---is---short,---you---need---Python

c = a + '\n' # 加了了换⾏行行符,注意+⽤用法是字符串串作为序

列列的⽤用法

c.rstrip() # 右侧去除换⾏行行符

# 字符串基本操作

a = 'Life is short, you need Python'

a.lower()

# 'life is short, you need

python'

a.upper()

# 'LIFE IS SHORT, YOU NEED

PYTHON'

a.count('i')

a.find('e')

a.rfind('need')

# 2

# 从左向右查找'e',3

# 从右向左查找'need',19

a.replace('you', 'I') # 'Life is short, I need Python'

tokens = a.split()

'need', 'Python']

# ['Life', 'is', 'short,', 'you',

b = ' ---'.join(tokens) # ⽤指定分隔符把字符串列表组合成新字符串,

Life---is---short,---you---need---Python

c = a + '\n'

列的⽤法

# 加了换⾏符,注意+⽤法是字符串作为序

c.rstrip()

[x for x in a]

构成的列表

# 右侧去除换⾏符

# 遍历每个字符并⽣成由所有字符按顺序

'Python' in a

[x for x in a] # 遍历每个字符并⽣生成由所有字符按顺序

构成的列列表

'Python' in a # True

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值