Posts

Showing posts from March, 2022

python programming for beginners to advanced Blog#2

Welcome back guys.. here is my 2nd post on python blog series. In my python blog#1  we wrote our first python code,  discussed what is a function and talked about print function and printing text on the console.  This post is regarding variable printing to console --> Now what is a variable ??💭💭 A variable is a name with a memory location(space) to store your values. Simply, if you are doing a maths addition problem you take two numbers as 'a' and 'b' and you add it . Here 'a' and 'b' are variables.  Let us try this code now :                     a= 2                     b= 5                     sum =a +b  ...

python programming for beginners to advanced Blog#1

Image
 Creating your first python code is as simple as eating a pie 😊 Lets us know first what is python 🐍?? Python is a programming language which is super easy to getting started with . Once you have decided that you want to start coding without any prior knowledge of coding , you can get started with python Programming . It is perfect for the new bees in coding and also for experienced obviously 😉 and its also best to learn now as it is a trending programming language . So now, lets get started and write our own python code . Yeah !  Yep that's it . This is your first python code 😃 Python has a print function that is used to see any text or value on the screen. You can print text between double quotation which is termed as Strings printing in Python. 💭💭 Now you must be thinking, what is a function ?? 😨 ...