py print numercic valw of string input code example
Example: how to print the 3erd character of an input in python
exampleString = "This is an example sentence"
print(exampleString[2])
exampleString = "This is an example sentence"
print(exampleString[2])