Explain about input statements in Python and formatting strings with examples.
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])