how to reference a string input in python code example
Example 1: input python 3
answer = input("What is your name? ")
print(f"Your name is {answer}")
Example 2: print format python
print('{:0.3f} {:0.3f}'.format(y, z))
answer = input("What is your name? ")
print(f"Your name is {answer}")
print('{:0.3f} {:0.3f}'.format(y, z))