Python字串len()方法返回字串的長度。
len()
語法
以下是len()方法的語法 -
len(str)
引數
返回值
範例
以下範例顯示了len()方法的用法。
#!/usr/bin/python3 str = "Welcom to yiibai python tutorials!" print ("Length of the string: ", len(str))
當執行上面的程式,它產生以下結果 -
Length of the string: 34