Thursday, 27 September 2018

Basic of python

1. What is program?
  Program is the set of introductions followed by computer for  performing an operation.

* Program----Request-----os

2. What is programming?
    Programming means a place or interface Where we can Write the program & run the program is called programming.

3. What is Logic?
    Logic is the set of steps thought for an operation.

* Add two Number.
  1.Input A
  2.Input B
3.C=A+B
4.Display c
Continue in the next post.............
4.What is Pseudocode?
   Pseudocode provide the facility to write the steps for performing an operation in our common language(English sentences). The pseudocode is not associated with our computer system. It means it is a way to describe the logic in our common languge. 
Example: Adding of Two Numbers.  
                1.Take first number
                2.Take second number
                3.Add these two numbers in third one
                4.Display third me as result.
Pseudocode ka matlab hota hai jo humne socha usko copy me likhte hai.Uske bad ata hai algorithm jisme hum isko sahi kar ke likhte hai.

5.What is Algorithm?
  Algorithm is actually is an advance form of Pseudocode to describe the steps in  our common language as well as some mathematical approach and computer approach.
Example: Adding of two Numbers.
                1.Take first Number in A
                2.Take second number in B
                3.C=A+B
                4.Display C

Friday, 21 September 2018

Learn python in simple way
First We know about Python:

                 Python is a widely used general-purpose, high-level programming language. Its design philosophy emphasizes code readability, And it's syntax allows programmers to express concepts in fewer lines of code than would be possible in languages such as C. Python supports multiple programming paradigms, including object oriented, imperative and functional programming or procedural styles. It features a dynamic type system and automatic memory management and has a large and comprehensive standard library . Python is often used as a scripting language.

In the next post, I will tell you the history of python.



            

History of Python

In this post I will tell you the History of Python

History of python:
            Python was conceived in the late 1980's and its implementation was started in December 1989 by Guido van Rossum at CWI in the Netherlands as a successor to the ABC language(itself inspired by SETL) capable of exception handling and interfacing with the Amoeba operating system. Van Rossum is python's principle author, and his continuing central role in deciding the direction of python is reflected in the title given to him by the python community, Benevolent Dictator for life(BDFL).