Skip to content

Latest commit

 

History

History
9 lines (7 loc) · 120 Bytes

index of a string.md

File metadata and controls

9 lines (7 loc) · 120 Bytes

Finding index of a String

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

Index of y is:1