how to pass in f string python code example
Example 1: python f string
>>> name = "Eric"
>>> age = 74
>>> f"Hello, {name}. You are {age}."
'Hello, Eric. You are 74.'
Example 2: python f string
import random
name = input("What is your name? ")
value = int(input(f"Give random value, {name}: "))
multiplier = random.randint(3, 6)
print("Now multiplying your value...")
complete_value = multiplier * value
print(f"Your value is... {complete_value}")
Example 3: how to pass in f string python
>>> f"{{70 + 4}}"
'{70 + 4}'