Basics
Basic syntax from the python programming language
Showing Output To User
The print function is used to display or print output as follows
we can display the content present in object using prit function as follows:-
Taking Input From the User
The input function is used to take input as string or character from the user as follows:
To take input in form of other datatypes we need to typecaste them as follows:-
To take input as an integer:-
To take input as an float:-
range Function
range function returns a sequence of numbers, eg, numbers starting from 0 to n-1 for range(0, n)
Here the start value and step value are by default 1 if not mentioned by the programmer. but int_stop_value is the compulsory parameter in range function
example-
Display all even numbers between 1 to 100
Comments
Comments are used to make the code more understandable for programmers, and they are not executed by compiler or interpreter.
Single line comment
Multi-line comment
Escape Sequence
An escape sequence is a sequence of characters; it doesn't represent itself (but is translated into another character) when used inside string literal or character. Some of the escape sequence characters are as follows:
Newline
Newline Character
Backslash
It adds a backslash
Single Quote
It adds a single quotation mark
Tab
It gives a tab space
Backspace
It adds a backspace
Octal value
It represents the value of an octal number
Hex value
It represents the value of a hex number
Carriage Return
Carriage return or \r will just work as you have shifted your cursor to the beginning of the string or line.
Strings
Python string is a sequence of characters, and each character can be individually accessed using its index.
String
You can create Strings by enclosing text in both forms of quotes - single quotes or double quotes.
example
Indexing
The position of every character placed in the string starts from 0th position ans step by step it ends at length-1 position
Slicing
Slicing refers to obtaining a sub-string from the given string. The following code will include index 1, 2, 3, and 4 for the variable named var_name
Slicing of the string can be obtained by the following syntax-
here start and step value are considered 0 and 1 respectively if not mentioned by the programmmer
isalnum() method
Returns True if all the characters in the string are alphanumeric, else False
isalpha() method
Returns True if all the characters in the string are alphabets
isdecimal() method
Returns True if all the characters in the string are decimals
isdigit() method
Returns True if all the characters in the string are digits
islower() method
Returns True if all characters in the string are lower case
isspace() method
Returns True if all characters in the string are whitespaces
isupper() method
Returns True if all characters in the string are upper case
lower() method
Converts a string into lower case equivalent
upper() method
Converts a string into upper case equivalent
strip() method
It removes leading and trailing spaces in the string
List
A List in Python represents a list of comma-separated values of any data type between square brackets.
These elements can be of different datatypes
Indexing
The position of every elements placed in the string starts from 0th position ans step by step it ends at length-1 position
List is ordered,indexed,mutable and most flexible and dynamic collection of elements in python.
Empty List
This method allows you to create an empty list
index method
Returns the index of the first element with the specified value
append method
Adds an element at the end of the list
extend method
Add the elements of a given list (or any iterable) to the end of the current list
insert method
Adds an element at the specified position
pop method
Removes the element at the specified position and returns it
remove method
The remove() method removes the first occurrence of a given item from the list
clear method
Removes all the elements from the list
count method
Returns the number of elements with the specified value
reverse method
Reverses the order of the list
sort method
Sorts the list
Tuples
Tuples are represented as comma-separated values of any data type within parentheses.
Tuple Creation
These elements can be of different datatypes
Indexing
The position of every elements placed in the string starts from 0th position ans step by step it ends at length-1 position
Tuples are ordered,indexing,immutable and most secured collection of elements
Lets talk about some of the tuple methods:
count method
It returns the number of times a specified value occurs in a tuple
index method
It searches the tuple for a specified value and returns the position.
Sets
A set is a collection of multiple values which is both unordered and unindexed. It is written in curly brackets.
Set Creation: Way 1
Set Creation: Way 2
Set is unordered,immutable,non-indexed type of collection.Duplicate elements are not allowed in sets.
Set Methods
Lets talk about some of the methods of sets:
add() method
Adds an element to a set
clear() method
Remove all elements from a set
discard() method
Removes the specified item from the set
intersection() method
Returns intersection of two or more sets
issubset() method
Checks if a set is a subset of another set
pop() method
Removes an element from the set
remove() method
Removes the specified element from the set
union() method
Returns the union of two or more sets
Tuples
Tuples are represented as comma-separated values of any data type within parentheses.
Tuple Creation
These elements can be of different datatypes
Indexing
The position of every elements placed in the string starts from 0th position ans step by step it ends at length-1 position
Tuples are ordered,indexing,immutable and most secured collection of elements
Lets talk about some of the tuple methods:
count method
It returns the number of times a specified value occurs in a tuple
index method
It searches the tuple for a specified value and returns the position.
Sets
A set is a collection of multiple values which is both unordered and unindexed. It is written in curly brackets.
Set Creation: Way 1
Set Creation: Way 2
Set is unordered,immutable,non-indexed type of collection.Duplicate elements are not allowed in sets.
Set Methods
Lets talk about some of the methods of sets:
add() method
Adds an element to a set
clear() method
Remove all elements from a set
discard() method
Removes the specified item from the set
intersection() method
Returns intersection of two or more sets
issubset() method
Checks if a set is a subset of another set
pop() method
Removes an element from the set
remove() method
Removes the specified element from the set
union() method
Returns the union of two or more sets
Dictionaries
The dictionary is an unordered set of comma-separated key:value pairs, within {}, with the requirement that within a dictionary, no two keys can be the same.
Dictionary
Dictionary is ordered and mutable collection of elements.Dictionary allows duplicate values but not duplicate keys.
Empty Dictionary
By putting two curly braces, you can create a blank dictionary
Adding Element to a dictionary
By this method, one can add new elements to the dictionary
Updating Element in a dictionary
If a specified key already exists, then its value will get updated
Deleting an element from a dictionary
del keyword is used to delete a specified key:value pair from the dictionary as follows:
Dictionary Functions & Methods
Below are some of the methods of dictionaries
len() method
It returns the length of the dictionary, i.e., the count of elements (key: value pairs) in the dictionary
clear() method
Removes all the elements from the dictionary
get() method
Returns the value of the specified key
items() method
Returns a list containing a tuple for each key-value pair
keys() method
Returns a list containing the dictionary's keys
values() method
Returns a list of all the values in the dictionary
update() method
Updates the dictionary with the specified key-value pairs
Indentation
In Python, indentation means the code is written with some spaces or tabs into many different blocks of code to indent it so that the interpreter can easily execute the Python code.
Indentation is applied on conditional statements and loop control statements. Indent specifies the block of code that is to be executed depending on the conditions.
Conditional Statements
The if, elif and else statements are the conditional statements in Python, and these implement selection constructs (decision constructs).
if Statement
if-else Statement
if-elif Statement
Nested if-else Statement
example-
Loops in Python
A loop or iteration statement repeatedly executes a statement, known as the loop body, until the controlling expression is false (0).
For Loop
The for loop of Python is designed to process the items of any sequence, such as a list or a string, one by one.
example-
While Loop
A while loop is a conditional loop that will repeat the instructions within itself as long as a conditional remains true.
example-
Break Statement
The break statement enables a program to skip over a part of the code. A break statement terminates the very loop it lies within.
example-
Continue Statement
The continue statement skips the rest of the loop statements and causes the next iteration to occur.
example-