Posts

Showing posts with the label python programming

CONDITIONAL STATEMENT PYTHON

Image
 A conditional statement(if...else) is very important in any programming language. if you have read my old post about how to write "HELLO WORLD " in python   , you know python is a very easy and very in demand programming language . And in python conditional statement (If.....else) is also very easy . Format of conditional statement :- In python conditional statement format is same as any major programming language.  here elif is new which is else...if together in python. The only thing you have to worry about is indentation as in python as python in a simple language which means it does not contain anything like curly brackets({}) and semi colons ( ; ) so you rather indent correctly while using python every time. Example of conditional statement in python :- As you can see that in the above example to check if variable b is greater than a , and rather easy than any other programming language . Thanks for reading, If find any improvement in this feel free to comment,...

HELLO WORLD PYTHON !!!!

Image
Hi it's Mr.Bluecoud , as I was writing blog I ran out of Ideas and I thought what's next than I thought why not write about the thing I am learning  " PYTHON " . so this is just a trail if people actually interested in this topic or . please comment if you find any problem or something wrong or any thing that can be done better.   As I we start to learn any programming language the first step we take is how to write "HELLO WORLD". so that's what we are going to learn to day. but before that let's talk some history . python is a open source programming language created by Guido van Rossum in 1991. as time keep going the demand of python programmer is also increasing. Installing python :- To install python go to  https://www.python.org/downloads/   and install the version of your choice Environment :- python can be used in  code editor or IDE . but if you ask me you should choose an IDE , IDE is stands for Integrated development environment . IDE basic...