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.
Title: Python Programming Basics
Description: Python programming basics ,installation process of python in the computer system
Description: Python programming basics ,installation process of python in the computer system
Document Preview
Extracts from the notes are below, to see the PDF you'll receive please use the links above
Kashmira Rao
Pramod Rajan
Amarjeet Sav
Introduction
History
Features
Installation
Basic Datatypes
Whitespace
Control Statements
http://docs
...
org/
Python is pre-installed on most Unix systems,
including Linux and MAC OS X
The pre-installed version may not be the
most recent one (2
...
2 and 3
...
1 as of Sept
09)
Download from http://python
...
◦ Python figures out the variable types on its own
...
else statement
It takes the form of an if test, and
ends with an optional else block
if
else:
If Statement “login” example
password=‘coolguru ‘
If password== input(“Enter your password :”):
print(“You have logged in” )
else:
print(“ invalid password “)
If… else if … else statement
It takes the form of an if test, followed by
one or more optional elif tests, and ends
with an optional else block
if
elif
else:
If… else if … else statement
example
number = 23
guess = int(input('Enter an integer : '))
if guess == number:
print ( 'Congratulations, you guessed it
...
Developing games
Title: Python Programming Basics
Description: Python programming basics ,installation process of python in the computer system
Description: Python programming basics ,installation process of python in the computer system