Answers for "Example of Python Strings with indexing"

0

Example of Python Strings with indexing

>>> x = "Follow us on Softhunt.net"
>>> x[0]
'F'
>>> x[1]
'o'
>>> x[6]
' '
>>> x[18]
'u'
>>> x[-1]
't'
>>> x[-25]
'F'
Posted by: Guest on April-10-2022

Python Answers by Framework

Browse Popular Code Answers by Language