The following is a simple Python program:
# This program prints Hello, World!
print("Hello, World!")
In programming, a variable is used to store information that can be referenced or manipulated later.
name = "Vaishnavi"
print("Hello, " + name + "!")
When coding, you might use keyboard shortcuts like Ctrl + S to save your work.
Here is an example of the output of the above code:
Hello, Vaishnavi!