Answers for "string get char at index python"

1

how to get all index of a char of a string in python

word = 'Hello'
to_find = 'l'

# in one line
print([i for i, x in enumerate(word) if x == to_find])
Posted by: Guest on June-03-2021
5

python char at

>>> s = "python"
>>> s[3]
'h'
>>> s[6]
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
IndexError: string index out of range
>>> s[0]
'p'
>>> s[-1]
'n'
>>> s[-6]
'p'
>>> s[-7]
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
IndexError: string index out of range
>>>
Posted by: Guest on March-31-2020
0

find charechtar index in string python

myString = 'Position of a character'
myString.find('s')
# 2
myString.find('x')
# -1
Posted by: Guest on September-29-2021

Code answers related to "string get char at index python"

Python Answers by Framework

Browse Popular Code Answers by Language