Now that you have VS code or Pycharm a place where you can write code and execute your code lets start using it to make programs and to learn Python! We are going to learn about
Strings , Strings are used to display text in output's, We can do that by using the built-in print() function in Python, the code below is an example of displaying text with
a string:
Now lets go over the quotes ("") Make sure to put quotes (single quotes or double quotes) around your piece of text your going to display! VERY IMPORTANT!!!
Now you might be wondering what is "# Output = Lets learn Python!" in the code of the example that is called a Comment Lets learn about it in the next lesson!