Print Variables in Python: Using print() Function
To print a variable using the print function, simply pass the variable as an argument to the print function. Here is an example:
my_variable = "Hello, World!"
print(my_variable)
In this example, the variable “my_variable” contains the string “Hello, World!” and then it is printed to the console using the print function. Running this code will output:
Hello, World!