Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # Strings
- # Strings are just text, basically a collection of letters for instance "Hello World" is a string.
- # Creating strings. We put quotes around text to create strings because programming languages need to distinguish
- # between different types of values.
- # You could even make a variable label a string for instance n1tr0g3n = "His blog is awesome so donate"
- #Then you could type
- print(n1tr0g3n)
- # and it would show you the string/text
- His blog is awesome
- # You could also use single quotes to create a string like this
- 'His blog is awesome so donate'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement