Search for notes by fellow students, in your own course and all over the country.

Browse our notes for titles which look like what you need, you can preview any of the notes via a sample of the contents. After you're happy these are the notes you're after simply pop them into your shopping cart.

My Basket

You have nothing in your shopping cart yet.

Title: Learn to code
Description: This the the 1 lesson of python an introductory part more are coming......

Document Preview

Extracts from the notes are below, to see the PDF you'll receive please use the links above


001: Introduction to Python
Learning Outcome: Python,IDLE, print function, Mathematical Operators
Definitions/Concepts
Python
● It was developed by Guido Von Rossum
...

● It is one of most popular programming languages
...

● It is a platform/software to write code and run them to get the output
...

● It is a python’s text-based command window to write code and run them to get output
...

● Whatever we want to display needs to be either in between single quotes or double quotes
...


Escape Character
● The backward slash \ along with a special character helps to do more things using the print function
...


\t ● Things written after \t are displayed after some space
...
\’

● If we use single quotes in the print function and want to display single quotes in the output too, we
have to use backslash
...


● If we want to display double quotes in output we can use single quotes in the print statement and
vice-versa
...


* ● Asterix: Multiply two numbers

/ ● Div: Gives exact result of division,(will include decimals)

// ● Floor Division: Gives quotient of division(will give integral value)

% ● Modulus Operator: Gives remainder of division
Title: Learn to code
Description: This the the 1 lesson of python an introductory part more are coming......