Answers for "doublespace in python"

0

doublespace in python

st = "This is a string with double  spaces"

doubleSpaces = st.find("  ")
print(doubleSpaces)
Posted by: Guest on January-12-2022

Python Answers by Framework

Browse Popular Code Answers by Language