Skip to main content

📙 ALL PROGRAMMING LANGLUAGE CLIKE HERE 📙

ALL PROGRAMMING LANGUAGE DOWNLOAD

1.All students if you want to all programming language download here Introduction to programming Computer programming is the process of  designing  and  writing  computer programs . As a skill set, it includes a wide variety of different tasks and techniques, but our tutorials are not intended to teach you everything. Instead, they are meant to provide  basic, practical skills  to help you understand and write  computer code  that reflects things you see and use in the real world.  What you need to know Our computer programming tutorials assume that you have  no programming experience  whatsoever. They do, however, require basic familiarity with the use of computers and web browsers. For example, you should be comfortable downloading and opening files, and using text editing software. If you don't feel confid...

PYTHON NOTES DOWNLOAD

  PYTHON NOTES DOWNLOAD CLICK BELLOW

              
                                                                                 

 Introduction:

  General-purpose Object Oriented Programming language.  High-level language  Developed in late 1980 by Guido van Rossum at National Research Institute for Mathematics and Computer Science in the Netherlands.  It is derived from programming languages such as ABC, Modula 3, small talk, Algol68.  It is Open Source Scripting language.  It is Case-sensitive language (Difference between uppercase and lowercase letters).  One of the official languages at Google.

Characteristics of Python: 

 Interpreted: Python source code is compiled to byte code as a .pyc file, and this byte code can be interpreted by the interpreter.  Interactive  Object Oriented Programming Language  Easy & Simple  Portable  Scalable: Provides improved structure for supporting large programs.  Integrated  Expressive Language 

Python Interpreter:

 Names of some Python interpreters are:  PyCharm  Python IDLE
There are two modes to use the python interpreter: i. Interactive Mode ii. Script Mode

Interactive Mode:

 Without passing python script file to the interpreter, directly execute code to Python (Command line). Example: >>>6+3 Output: 9 

Note: >>> is a command the python interpreter uses to indicate that it is ready. The interactive mode is better when a programmer deals with small pieces of code. To run a python file on command line: exec(open(“C:\Python33\python programs\program1.py”).read( )) ii. Script Mode: In this mode source code is stored in a file with the .py extension and use the interpreter to execute the contents of the file. To execute the script by the interpreter, you have to tell the interpreter the name of the file. Example: if you have a file name Demo.py , to run the script you have to follow the following steps: Step-1: Open the text editor i.e. Notepad Step-2: Write the python code and save the file with .py file extension. (Default directory is C:\Python33/Demo.py) Step-3: Open IDLE ( Python GUI) python shell Step-4: Click on file menu and select the open option Step-5: Select the existing python file Step-6: Now a window of python file will be opened Step-7: Click on Run menu and the option Run Module

Python Character Set 

: It is a set of valid characters that a language recognize. Letters: A-Z, a-z Digits : 0-9 Special Symbols Whitespace

 TOKENS Token:

 Smallest individual unit in a program is known as token. There are five types of token in python: 1. Keyword 2. Identifier 3. Literal 4. Operators 5. Punctuators 1. Keyword: Reserved words in the library of a language. There are 33 keywords in python. 

Identifier:

 The name given by the user to the entities like variable name, class-name, function-name etc. 

Rules for identifiers: 

 It can be a combination of letters in lowercase (a to z) or uppercase (A to Z) or digits (0 to 9) or an underscore.  It cannot start with a digit.  Keywords cannot be used as an identifier.  We cannot use special symbols like !, @, #, $, %, + etc. in identifier.  _ (underscore) can be used in identifier.  Commas or blank spaces are not allowed within an identifier. 3. Literal: Literals are the constant value. Literals can be defined as a data that is given in a variable or constant.

MUTABLE & IMMUTABLE Data Type: 

 Mutable Data Type: These are changeable. In the same memory address, new value can be stored. Example: List, Set, Dictionary  Immutable Data Type: These are unchangeable. In the same memory address new value cannot be stored. Example: integer, float, Boolean, string and tuple. 

Basic Operators in Python:

 i. Arithmetic Operators ii. Relational Operator iii. Logical Operators iv. Bitwise operators v. Assignment Operators vi. Other Special Operators o Identity Operators o Membership operators i. Arithmetic Operators: To perform mathematical operations.

Comments

Popular posts

ALL NOTES DOWNLOAD BRIEFLY REFERENCE

2.LIST OF PROGRAMMING NOTES IT IS THREE PARTS OF DEVELOPMENT 1) ...FRONT-END DEVELOPMENT... A Front-End Developer is someone who creates websites and web applications. The difference between Front-End and Back-End is that Front-End refers to how a web page looks, while back-end refers to how it works. You can think of Front-End as  client-side  and Back-End as  server-side . The basic languages for Front-End Development are HTML, CSS, and JavaScript. Client Software (Front-End) The basic languages of Front-End Development ALL DOWNLOAD CLICK HTML CSS JAVASCRIPT Popular JavaScript and CSS frameworks and libraries: BOOTSTRAP HTML DOM ANGULAR.JS REACT.JS XML JQUERY JSON 2) ...BACK-END DEVELOPMENT... Back-end development means working on server-side software, which focuses on everythin...

ALL PROGRAMMING LANGUAGE DOWNLOAD

1.All students if you want to all programming language download here Introduction to programming Computer programming is the process of  designing  and  writing  computer programs . As a skill set, it includes a wide variety of different tasks and techniques, but our tutorials are not intended to teach you everything. Instead, they are meant to provide  basic, practical skills  to help you understand and write  computer code  that reflects things you see and use in the real world.  What you need to know Our computer programming tutorials assume that you have  no programming experience  whatsoever. They do, however, require basic familiarity with the use of computers and web browsers. For example, you should be comfortable downloading and opening files, and using text editing software. If you don't feel confid...

FRONT END CLIENT SIDE

  The basic languages for Front-End Development are HTML, CSS, and JavaScript. FRONT-END DEVELOPMENT:- The basic languages of Front-End Development are: HTML CSS JAVASCRIPT How to not be overwhelmed  The internet is full of people saying you need to learn every language, framework, and tool in order to be a front-end web developer. The advice is well-intentioned but damaging because it can be so overwhelming that you don’t know where to begin, so you never begin. What you need is to focus on one thing at a time and not get distracted worrying about everything else. The aim of this guide is to give you a step-by-step idea of what to do in order to become a front-end web developer.  How to find time to learn   Don’t worry about setting aside a bunch of time to learn. Just set aside 2 minutes, and if you’re...