Answers for "count 1 in a string in python"

0

count string python

#printing the number of characters in  a string
print(len("String you want to count"))

#counting characters in a variable
a = "some string"
print(len(a))
Posted by: Guest on January-11-2021
4

count in python

it counts the number of elements in the list or in the string(words)
Posted by: Guest on June-06-2020

Code answers related to "count 1 in a string in python"

Python Answers by Framework

Browse Popular Code Answers by Language