Can anyone tell me how can I get the length of a string without using the len() function or any string methods. Please anyone tell me as I\'m tapping my head ma
len()
easy:
length=0 for x in "This is a string": length+=1 print(length)