Python 练习实例60
2022-05-13 本文已影响0人
loinue
来自菜鸟教程
https://www.runoob.com/python/python-exercise-example60.html
题目:计算字符串长度
!/usr/bin/python
-- coding: UTF-8 --
sStr1 = 'strlen'
print len(sStr1)
直接使用len函数包裹住,其他语言,如vue计算长度是使用.length
go 的话也是len(sStr1)
评论区有给了另一个方法:
sString = 'abcde'
length = sString.len()
print(length)
同样是调用了len方法。
字符串的处理常见的函数之后会常见到。