CodingSplashcodingsplash.hashnode.devยทSep 26, 2023Day10 - String SlicingLength of a String: We can find length of a string using len() function. Example 01: names = "Python, Java" print(len(names)) #output = 12 Example 02: fruit = "Mango" len1 = len(fruit) print("Mango is a", len1, "letter word.") #output: Mango is a 5 ...100DaysofPython2Articles1WeekAdd a thoughtful commentNo comments yetBe the first to start the conversation.