Lets make a simple start.
Case to solve: Add two numbers.

Generally, in python there is no complex syntaxes and it is as simple as writing a text logic to perform a task like as below.

#Copy the below to your coding platform and run to see the output.
#Adding two variable values and return the sum
a=10 #defining the variable “a” with value assigned
b=10 #defining the variable “a” with value assigned
c=a+b #defining the variable “c” with value as addition of a+b
print(c) #return the value of variable “c” by using the

This is simple code to provide the initial understanding of the python lingual In these coming weeks, we will slowly deep dive into the basics of python with more examples.

For continuous updates, subscribe to this blog and get more insights on Python language and its benefits.

Leave a comment

Trending