Content-Length: 41144 | pFad | http://www.thepythoncode.com/code/print-variable-name-and-value-in-python
print_variable_name_and_value.py
# Normal way to print variable name and value
name = "Abdou"
age = 24
print(f"name: {name}, age: {age}")
# using the "=" sign
print(f"{name=}, {age=}")
Fetched URL: http://www.thepythoncode.com/code/print-variable-name-and-value-in-python
Alternative Proxies: