python中的string类

python中的string数据类型

  1. string类的操作
    • string 可以直接相加,作用相当于字符拼接
    • string 可以利用与 integer 相乘的方法进行复制。
>>>"egg" + "chicken"
eggchicken

>>>4*'egg'
eggeggeggegg
>>>2*'23'
'2323'
>>>int('2323')#类型转换
2323


  • 格式化输出. 可以用上述+的方式进行拼接进行输出, 也可以用格式化的输出方式
#example 1, 单输出
name = "Mike"
print "Hello %s" % (name)

#example 2  多输出
string_1 = "Camelot"
string_2 = "place"

print "Let's not go to %s. 'Tis a silly %s." % (string_1, string_2)
  • xxx.upper()此类dot notation只能对于string类型的数据使用; upper(xxx)可以用于其他数据类型. 注意.len()没有 dot notation的用法.
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值