0
Please I need help, I can't remember the function used to call up a single character from a string. For example, h from "hello"
2 Réponses
+ 5
Learn about slicing.
You can also use index to read character like:
sttt = 'hello'
print(sttt[0])
+ 1
Thank you