0
Can someone please help me with understanding strings??
help
5 odpowiedzi
+ 2
Strings are a sequence of characters:
'c' is a character
"Hello, world" is a string.
It's basicly everything that has characters and is longer than 1 character
+ 2
If you wanted to print Hello World to console/screen the easiest way would be to print a string "Hello World".
+ 2
Thank you guys, it's making more sense. I'm new at learning code. Trying to be as patient as I can be
+ 1
It is just a way to save some writing without your computer thinking it's an instruction. Put single or double quotes around writing to make them.
"string"
'string'