OP 19 April, 2022 - 12:26 AM
1. Using Variables.
e.g.
1a = "Hello, World!"
print(1a)
The output would be
-- "Hello, World!"
as we have declared the variable to be that string of text.
Step 2. Using Regular Strings
Print("Hello, World!")
The output would be
-- "Hello, World!"
as this time although we did not use a string variable to put text in the output, it does not have to be used by variables, this is "Hello, world!" (Hello, World!) just alone as a text-string.
I hope that you enjoyed this very useful tutorial!!!... It took me only like 2 minutes to make...!!!
e.g.
1a = "Hello, World!"
print(1a)
The output would be
-- "Hello, World!"
as we have declared the variable to be that string of text.
Step 2. Using Regular Strings
Print("Hello, World!")
The output would be
-- "Hello, World!"
as this time although we did not use a string variable to put text in the output, it does not have to be used by variables, this is "Hello, world!" (Hello, World!) just alone as a text-string.
I hope that you enjoyed this very useful tutorial!!!... It took me only like 2 minutes to make...!!!