Python Programming Language MCQ (M3R5) book | Note PDF in Hindi and English
top of page
Search
Introduction to Programming and Algorithms & Flowcharts to Solve Problems Note with MCQ Introduction to Python Notes with MCQ Operators,...
Rajesh Singh
Feb 20, 20221 min read
Tell function in python with example
Tell () function can be used to get the position of file handle and returns current position of file object where as Seek () function is...
86 views0 comments
Rajesh Singh
Feb 19, 20221 min read
Seek function in python with example
Seek () function is used to change the position of the file handle to a given specific position in python. File handle such as a cursor...
54 views0 comments
Rajesh Singh
Feb 17, 20222 min read
What is slicing and indexing in Python with examples?
Slicing is a Python attitude that enables accessing parts of data from the given sequence like list, tuples etc. A slice object is...
65 views0 comments
Rajesh Singh
Nov 10, 20201 min read
What is difference between Compiler, Interpreter and Assembler?
Compiler: A Compiler is a program used in High level language to convert the low level language or machine code into binary information....
2,244 views0 comments
Rajesh Singh
Apr 14, 20202 min read
Python Modules
A module is a file containing Python definitions and statements. A module can characterize functions, classes and variables. A module can...
134 views0 comments
Rajesh Singh
Apr 10, 20202 min read
Scope of Objects and names in Python:
Scope refers to the coding region from which exacting Python object is accessible. So one cannot access any exacting object from...
908 views0 comments
Rajesh Singh
Apr 8, 20202 min read
Command Line Arguments in Python
Command Line Arguments are the arguments that are specified after the name of the program in the command line shell of the operating...
101 views0 comments
Rajesh Singh
Apr 6, 20203 min read
Python File Methods
A file object permits us to utilize, access and control all the user accessible files. One can read and write any such files. At the...
82 views0 comments
Rajesh Singh
Apr 6, 20202 min read
What is a file in Python?
File is a named location on disk to store related information. It is used to permanently store data in a non-volatile memory. Firstly we...
20 views0 comments
Rajesh Singh
Apr 6, 20203 min read
Local and Global Variables in Python
Local Variable In all-purpose, a variable that is defined in a block is available in that block only. It is not reachable outside the...
36 views0 comments
Rajesh Singh
Apr 3, 20202 min read
What is Date & Time Functions in Python?
Date, time and datetime modules give a number of functions to contract with dates, times and time intervals in Python. We manipulate...
27 views0 comments
Rajesh Singh
Apr 3, 20202 min read
What is recursion in Python with Examples?
Recursion is the process of defining something in terms of itself. A recursive function is a function defined in terms of itself via...
20 views0 comments
Rajesh Singh
Apr 3, 20202 min read
What is Function Arguments in Python
A function that takes variable number of arguments in Python. Example: def tkd(name,msg): print("Hello",name + ', ' + msg)...
22 views0 comments
Rajesh Singh
Apr 3, 20202 min read
What is Built-in functions?
There are following set of built in functions in Python Function Description abs() ...
29 views0 comments
Rajesh Singh
Apr 3, 20201 min read
What is a function in Python?
Function is a group of related statements that perform a specific task in Python. A function is a block of code which only runs when it...
27 views0 comments
Rajesh Singh
Apr 3, 20203 min read
What is Python Operators?
Operators are used to perform operations on variables and values. There are following operators in Python Arithmetic operators Assignment...
28 views0 comments
Rajesh Singh
Apr 1, 20201 min read
Pass Statement in Python
The pass statement acts as a placeholder and frequently used when there is no need of code but a statement is still essential to make a...
16 views0 comments
Rajesh Singh
Apr 1, 20201 min read
Continue Statement in Python with Example
The continue statement is used within a loop to skip the rest of the statements in the body of loop for the current iteration and jump to...
21 views0 comments
Rajesh Singh
Apr 1, 20201 min read
Break Statement in Python with example
The break statement is used to terminate the loop when a certain condition is gathering. The break statement is usually used inside a...
23 views0 comments
bottom of page