Learning the basics

--Originally published at Py(t)hon

Continuing with the course, there are certain topic about Python we have to master. Some of them are basics but since most of us are new at this, they suit us well.

We are going to begin with the basic output “print”, which is pretty easy to understand.

First you have to write print, then open a parenthesis and between quotations marks you write a message, the message that you want the user to appear, the message maybe between single or double quotation marks, either way Python will accept it.

print 1

Here is a video explaining it #Pug#Print#Python#ISC#TC101

It will continue…