python字符串切片

本文探讨了Python中字符串切片的基本用法,通过实例演示如何获取子串、反转字符串以及处理数字的特殊问题。此外,还介绍了如何创建并检查三位数反转的规律。最后,通过代码展示了如何使用for循环和条件判断检查数字是否为回文数。
摘要由CSDN通过智能技术生成

           # type
a = 10     # number
b = '1'    # string
c = [1,2,3] # list

🌵🌵🌵🌵🌵🌵

#  字符串切片
s   =   'python'
#index   012345
print(s[0])  # get value p from string    
print(s[3])  # h
print(s[::-1])   #transpose    nohtyp
print(s[0:2:1])   # py   0 1  

 string_name[start_value:end_value:steps]
# The start value indicates the start point
# steps indicates how many I add each time
# end_value indicates the end point ,but  the number  doesn't show
print(s[0:5:2])   # pto   0 2 4

🐰练习

#  test         
d = 'nihaoyaqingti'
#    0123456789 10 11 12
print(d[1:11:3])   # ioqg    1 4 7 10

# test2
# there is a 3-digit number,and when you add 396,
# it reverses the original number .
# fin all of these 3-digit numer.
# such as    105+396=501

# create number  100~999      100   101    102   103   104.....999
for x in range(100,1000):
    s = x+396  # add 396,it reverses the original number .105+396
    s = str(s)  # change the type to string
    c = s[::-1] # reverse   501----->105
    c = int(c) # change type to number(integer)
    if x==c:
        print(x)
    
#homework 
1,please enter a number,judge if the number is a palindrome.
such as  1001   2002   1991  3113   symmetry

2,
f = 'abcdefgh'
print(f[1:6:2])   # result is ?
print(f[2:8:3])   # result is ?
print(f[0:3:1])   # result is ?
print(f[2:5:3])   # result is ?
'dfh'
'aceg'
'hgfedcba'


 

评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

青提学编程

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值