Creating variables in Python is incredibly easy. In this example, the variable foo contains a value of bar.
foo = "bar"
Printing the foo variable will show that the foo variable contains a value of bar.
print(foo)
You can create a new variable that is exactly the same as a current variable. In this example, the bar variable will contain the same exact data as the foo variable.
bar = foo