当前分类:300例题>>正文

Python示例:计算字符串长度

来源:互联网   更新时间:2023年6月21日  

Python 示例

写一个 Python示例,用实例找到字符串长度。

Python示例查找字符串长度示例 1

程序使用镜头功能找到字符串长度。

请参考字符串文章,了解 Python 中关于它们的一切。

str1 = "Tutorial Gateway"

print("Total Length of a Given String = ", len(str1))
Total Length of a Given String =  16

Python示例查找字符串长度示例 2

这个 python 程序和第一个例子一样。但是,这一次,我们允许用户输入自己的字符串。

str1 = input("Please enter your own String : ")

print("Total Length of a Given String = ", len(str1))

本文固定链接:https://6yhj.com/leku-p-4371.html  版权所有,转载请保留本地址!
[猜你喜欢]

标签: sqlite