Answers for "A variable is created the moment you first assign a value to it."

0

A variable is created the moment you first assign a value to it.

x = 5

y = "John"

print(x)

print(y)
Posted by: Guest on August-24-2021

Code answers related to "A variable is created the moment you first assign a value to it."

Browse Popular Code Answers by Language