How to get a specific character from a string by index in Python

1 Answer

0 votes
s = "Python programming"
 
ch = s[0:1] 
print(ch)
 
print(s[2:3])

print(s[4])
 
 
     
     
     
'''
run:
 
P
t
o
 
'''

 



answered Jun 30, 2021 by avibootz
edited Jun 30, 2021 by avibootz

Related questions

...