0
MMahendra Kumar
to count the number of valid characters in a given string
0 Comments
S= str(input()) count=0; for i in range(len(S)): if i!=" ": count=count+1; print(count)