Skip to content

Latest commit

 

History

History
7 lines (7 loc) · 118 Bytes

index of a string.md

File metadata and controls

7 lines (7 loc) · 118 Bytes

Finding index of a String

s="python"
index=s.index(y)
print("Index of y is:",index)
'''
>Index of y is:1