写一个 Python示例,用实例找到字符串长度。
程序使用镜头功能找到字符串长度。
请参考字符串文章,了解 Python 中关于它们的一切。
str1 = "Tutorial Gateway"
print("Total Length of a Given String = ", len(str1))
Total Length of a Given String = 16
这个 python 程序和第一个例子一样。但是,这一次,我们允许用户输入自己的字符串。
str1 = input("Please enter your own String : ")
print("Total Length of a Given String = ", len(str1))
标签: sqlite