how to input a string to x in python code example
Example 1: python input
# The function 'input()' asks the user for input
myName = input()
Example 2: how to print the 3erd character of an input in python
exampleString = "This is an example sentence"
print(exampleString[2])