python 3 string length

Solutions on MaxInterview for python 3 string length by the best coders in the world

showing results for - "python 3 string length"
Aliya
30 Jan 2021
1#!/usr/bin/python3
2
3str = "this is string example....wow!!!"
4print ("Length of the string: ", len(str))