Ads block
Showing posts with label Python Programming Unit 3. Show all posts
Showing posts with label Python Programming Unit 3. Show all posts
Anonymous Function
Anonymous Function These functions are called anonymous because they are not declared in the standard manner by using the def keyword. The anonymous f…
Read more »
First class Objects
Treat function as first-class object In Python both functions and classes are treated as objects which are called as first class objects, all…
Read more »
Strings in Python
String In Python strings are arrays of bytes representing Unicode characters . However Python does not have a character data type , a single characte…
Read more »
Scope of Variable in Python
Scope of variable All variables in a program may not be accessible at all locations in that program. This depends on where you have declared a variab…
Read more »
Function Arguments
Function Arguments The arguments are the type of information which can be passed into the function. The arguments are specified in the parentheses…
Read more »
Function in Python
Function A function is a block of organised, reusable code that is used to perform a single, related action. A functions is a set of statements tha…
Read more »
SEARCH
LATEST
3-latest-65px
SECCIONS
- Computer Network Unit 1 (10)
- Computer Network Unit 2 (2)
- Computer System Security unit 1 (3)
- Python Programming Quizes (8)
- Python Programming Unit 1 (17)
- Python Programming Unit 2 (12)
- Python Programming Unit 3 (6)
- Python Programming Unit 4 (17)
- Python Programming Unit 5 (6)
Search This Blog
Powered by Blogger.
Blog Archive
- July 2023 (1)
- January 2023 (4)
- December 2022 (1)
- May 2022 (1)
- December 2021 (4)
- November 2021 (12)
- October 2021 (2)
- August 2021 (1)
- July 2021 (19)
- June 2021 (5)
- May 2021 (29)
- April 2021 (11)
- March 2021 (3)
Operators in C
Operators An operator is a symbol that tells the compiler to perform specific mathematical or logical operations, based on the value provi...