Let us begin our common programming journey by deciding on the programming language that we will use and the IDE.
For our journey we will use Python and our IDE will be Colab.
Here is some information about the Python programming language.Python documentation.
Why do we choose Python?
It is free and it is free source.
Python has an extensive, robust and well documented library, and what is more it increases per day.
Python Libraries can be searched here.
PyPiThe Python Syntax and terms mirror natural languages. For instance and, or, not remain and, or and not and do not become &&,|| and !. Python doesn’t use {} for blocks. That is done by indentation. The same applies to other parts of Python as well.
Python is interpreted and can be run statement by statement. This is very handy and is used extensively in making interactive applications.
Python is Object Oriented and has functions. Every language has this.
Python is dynamically typed.
Python can be downloaded from its official site.
Python DownloadWe will not be downloading Python because we will do our programming on Colab. What is Colab?
I quote from the Colab site
”Colaboratory, or Colab for short, is a product from Google Research. Colab allows anybody to write and execute arbitrary python code through the browser, and is especially well suited to machine learning, data analysis and education. More technically, Colab is a hosted Jupyter notebook service that requires no setup to use, while providing access free of charge to computing resources including GPUs.”
Check out this link for more.Running a program on Colab.
StepsGoto this link Colab Research
New Notebook
Start writing code
Code written.
Press the play/run button.
Wait for the animation to end.Check the output.
Change the name to helloworld.pynb
Press save
.
Here is a link to the saved file helloworld.pynb.
Thanks for reading and joining this journey.