Open navigation menu
Close suggestions
Search
Search
en
Change Language
Upload
Sign in
Sign in
Download free for days
0 ratings
0% found this document useful (0 votes)
18 views
Chapter 2 Cs Class 12
Computer science
Uploaded by
K.S.SANTHOSH NARAYANAN
AI-enhanced title
Copyright
© © All Rights Reserved
Available Formats
Download as PDF or read online on Scribd
Download now
Download
Save chapter 2 cs class 12 For Later
Download
Save
Save chapter 2 cs class 12 For Later
0%
0% found this document useful, undefined
0%
, undefined
Embed
Share
Print
Report
0 ratings
0% found this document useful (0 votes)
18 views
Chapter 2 Cs Class 12
Computer science
Uploaded by
K.S.SANTHOSH NARAYANAN
AI-enhanced title
Copyright
© © All Rights Reserved
Available Formats
Download as PDF or read online on Scribd
Download now
Download
Save chapter 2 cs class 12 For Later
Carousel Previous
Carousel Next
Save
Save chapter 2 cs class 12 For Later
0%
0% found this document useful, undefined
0%
, undefined
Embed
Share
Print
Report
Download now
Download
You are on page 1
/ 12
Search
Fullscreen
‘ats, ‘ Functions 2.1 INTRODUCTION So far we have introduced variables, operators, input/output operations, data types and execution of a program in Python. The codes we have studied till now have been single, conditional and iterative sequence of instructions and were small in size. We can easily work with problems whose solutions can be written in the form of small Python programs. However, as a problem becomes complex, the program also increases in size and complexity, and it becomes difficult and cumbersome for a programmer to keep track of the data and control statements in the whole program, Thus, Python provides the feature to divide a large program into different smaller modules. These modules are known as functions which have the responsibility to work upon data for processing, It is difficult and time-consuming to interpret a large program every time there is a slight modification in the code. But if that program is divided into a number of small functions {also called sub-programs), then the whole task becomes easy and saves a lot of time and effort. If required and if it becomes necessary, the sub-programs (or sub-problems) can be further divided into still smaller programs, and the process of dividing a program into a set of programs of smaller size can be continued up to any appropriate level. ‘Therefore, functions provide a systematic way of problem-solving by dividing the given problem into several sub-problems, finding their individual solutions, and integrating the solutions of individual problems to solve the original problem.This approach to problem-solving is called stepwise refinement method or modular approach or divide and conquer approach as shown below (Fig. 2.1). This program is one long, complex __ In this program, the task has been divided Sequence of statements, into smaller tasks, each of which is performeq | bya saparste Neen 1 |def function1(): statement statements statements statements statement function statements atacehent statements ape def function2(): statements Seer statements function statement statements statements seen statements Meee es def function3(): statements statement naeien statements statement statements statement i statements ae . statements def functiond (): statements | statement , statements statement function statements statement statements a statements statements statements 2.2 FUNCTIONS IN PYTHON A function is a group of statements that exists within a program for the purpose of performing a specific task. Instead of writing a large program as one long sequence of instructions, it can be written as several small functions, each performing a specific part of the task. They constitute line of code(s) that are executed sequentially from top to bottom by Python interpreter. It is simply a group of statements under any name, i,, function name, and can be invoked (called) from another part of the program. Consider an example of School Management Software which constitutes various tasks like registering students, fee collection, issuing books from library, ‘TC (transfer certificate) generation, result declaration, etc. In such cases, we have to create different functions for each task to manage software development. This can be better explained using the example of a dishwasher from our day-to-day life. (Fig. 2.2), A dishwasher works like a function. You put dirty dishes in the dishwasher and when you press the start button, it performs several tasks like adding detergent and water, washing dishes, and even drying them out. OU Cao TUT eADirty Dishes Function: wash. dishes 1. Add water/detergent | 2. Wash dishes 3. Dry them Return Value (Output) Fig. 2.2: Working of a Dishwasher similar to a Python Function And, thus, you get clean dishes as a result (output), Functions are also similar as they take some data as input and, depending upon the instructions/ code given, perform the defined task and give some output in the end. In Python, we have worked with the script mode in the Python revision chapter, which provides the capability of retaining our work for future usage. For working in script mode, we need to write a function in Python and save it in the file having .py extension. A Python function is written once and is used/called as many times as required. Functions are the most important building blocks for any application in Python and work on the and conquer approach. > (Advantages of Functions: Functions offer the following advantages over sequential approach of programming: 1. Program handling becomes easier: Only a small part of the program is dealt with at a time. 2. Code reusability: A Python function can be defined once and used many times. So, it results in code reuse; you don’t need to write the same code more than once. 3. Compact code: While working with functions, a common set of code is written only ‘once and can be called from any part of the program which reduces lines of code and programming overheads. 4. Easy updation: In case a function is not used in a program, the same set of code which is required in multiple programs has to be written repeatedly. Hence, if we wish to make any change in a formula/expression, we have to make changes at every place, else it will result in erroneous or undesirable output. With function, however, it is required to make changes to only one locationXwhich is the function itself). Functions can be categorized into the following three types: (i) Built-in Functions (ii) Modules Built-in Library (iii) User-defined FunctionsPython provides built-in functions that convert values from one data type to another, which are termed as type conversion functions (Pig. 2.3(a)). (® intQ: The int() function takes any value and converts it into an integer (Statement 1), int() can convert oating-point values to integers but it doesn’t round off; it chops off the fraction part (Statements 3 and 4). However, if we give a string Value as ay argument to int(), it will generat an error (Statement 5) SOE a a ngument is Passed, inti) returns 0, If ni * str() function converts its argument into a string (Statement 2). 1 ee eSebtP80eNNaM, tae a0 2058, Salone) DES TOT Dae (Intel) ) on wansa Type “copyright, screditer or de> ane (rags) oe “License ()* for more information, “s converts the string argument to integer >>> strqaas) ‘Soveren' converts the numer vue to string tas" En t20t-88) =e, Meter converts the feet erpumentte nagar $96 6-94.2) —s statement4, Ane ("Hed20") —e statement gener Traceback (most x File "cpysneiis: ine ("Helio") Vatuetsrer: ‘chops off the floating pont number to integer Fig. 2.3(a): Type Conversion Functions in Python (iii) float(): float function converts inte ers and strings into floating- (Fig.2.3(b)). This function treats diffe point numbers rent types of parameters as expl lained below: Mar 28-2038, 16:07:46) MSE v.00 3a ype, onprsighe", coredica or ~licenee()* tor mare internation, >>> Heat ao, Soe oat ea1.70 >>> frowecane2s) >>> Coat a2e3/a) Fig. 2.3(b): floati) Type Conversion Functiona > Ifthe argument is a number, floa = retu float(26) returns 26.0, and mata seh fitch He oe If the a Pate Por eae Weare the expression is evaluated and float() returns its > If the arguinent i" nee eturns $8.0 and float(12+3/4) returns 12.75. a string containin, iy correct format, loat() returns the Mes ss */~ sign and a floating point number in e float float('3.14159") returns 3.14159, loat value represented by this string. For example, > Ifthe string argument contains any character other than leading +/- sign and floating point number in the correct format, th n , then float() resul ; ia following statements will result in errors: 7 SOS TS a float('40.63+’), float(‘86.7~'), float(‘35+4/7') Gah) if no argument is passed, float() returns 0.0. B) input() function Itenables us to accept an input in the form of string from the user without evaluating its value. It provides the most common way to gather input from the keyboard. The function input() continues to read input text from the user until it encounters a new line. For example, name input ("Enter a name:') print (‘Welcome', name + 'Pleasure to meet you') & Prog2.py - C/python36/prog2.py 3.6.5) — © MES File Edit Shell Debug Options Window Help Python 3.6.5 (v3.6.5: f59c09S2b4, Mar 26 2018, 16:0 = (Invel)} on wansz | Type "copyright", "oredite™ or "License ()" for more informacion. 46) [MSC v.2900 82 Ba ~ RESTART: C:/python36/prog2-py “-=--====eenmmmmmee Enter your name: Rinke Welcome RinkuPleasure to meet you >> The input() function allows to insert a value into a program. input() function returns a string | value that can be converted into integer data type. For example, ; > To calculate the Selling price of an item [a -vester-< fe tae fort hor Opts Hatem te : Seatbrice > intlinput ("Enter cost Pricer) TitingpoaarocarrepenPpienticnireie Bi - OX Profit = int (input (Enter Profit: ')) ‘Selling Price = costPrice + Pro! print('Jelling Price: ', Selling Price) = — = tan caeia WEF & ere tic Tae vce matamaost? sar mun 00 ana Rabe a nesrarr: <1 /cners/over2/apptata/ocal /Progeans/PYtRCA/ Ries cat iat @ eter frotits 30 Setting prise: "v0 Here, int() function is used to convert the inputted cost price and profit, which is of string ‘type, into integer data type. > input() method can also be used without arguments Consider the code snippet: Here, input() function has been used without displaying any message to >>> selapaeqy the user. As per the nature of input() method, it will extract whatever ||,,> fae input is being entered from the keyboard, like ‘hello’ has been entered "e140" and then displayed in the next line using print() function. eval() function This function is used to evaluate the value of a string. eval() function takes and evaluates as per the input fetched, enclosed within single quotes (can be referred to as a string) as an argument, evaluates this string as a number, and returns the numeric result (int or float as the case may be). If the given argument is not a string, or if it cannot be evaluated asa number, then eval() function results in an error. For example, -5 (v3.6.5:25900002bH, Mar 28 2018, 1610714 ~ ©) (usc v.1900 32 bit (Zneel)} cn wins? Type “copyrigne", “credits” or “License ()* for more 4 TrpeBsror: eal arg 1 mst be a string, Dycas or code cojece i TE) Insimple words, the eval() function evaluates the “String” like a python expression and returns the resultas an integer. For example, poanaec may ee fotiiusteating eval) using Tnpat Jere = eva input "Eater any nuaber of your ctoice")) [prise (eva) Prine (eype eva))Dd) 5) As is evident from the output, eval() function returns the evaluated expression as 80 in the form of an integer with string as input. 50 + 30 is an expression that returns 80 as a result. max() and min() functions These are used to find maximum and minimum value respectively out of several values. The max() function takes two or more arguments and returns the largest one. For example, (v8. 6.818900 tse v. (invel)} on wins? Type "copyright", "credits" or "License()" for more information d>> maxi, 12, 6, 15) as >>> max(-2, -7, 98, -4) 2 5d> X= max(S9, 80, 95.6, 98.2) >>> print ("Maximum Value", x) Maximum Value 95.6 In case of String type argument, ASCII values of characters are compared for retrieving highest and lowest values using max() and min() functions. [>>> maxc*Deini”, tugjain® rat™, "Agartala") The min() function takes two or more arguments and returns the smallest item. For example, Mar 28 2018, 16078 900 32 bit (Incei)} on wins? Type "copyright", “credits” or “License()* for more information, >>> min(23, =108, 5, 2) “108 >>> min(7, 26, 0, 4) ° de> ys min(*hello', ‘now’, ‘are'y ‘you', 'Siz") 3o> print ("Minimum Value: *, ¥) Minsmum Value: Sir Explanatio The above lines of code shall print ‘Sir’ as the output because the ASCII value of 's’ is smallest, ie, 83, which is an uppercase letter and less than the rest of the words in lowercase— h Chelle’), a (‘are’) and y (‘you’) whose ASCII codes are 104, 97 and 121 respectively. ‘a’ and 0 (zero) is 65, 97 and 48 respectively. abs() function ‘The abs() function returns the absolute value of a single number. It takes an integer or float humber as argument and always returns a positive value. It returns a floating or integer number depending upon an argument.FA) )} on wans2 copyright", “credits” or "License()" for more information. >>> abs (-80) 50 >>> ans cas) 4s >>> abs(-20.6) 30.6 >> type() function If you wish to determine the data type of a variable, i.e, what type of value does it hold/point to, then type() function can be used. de> type. (8.2) Zclaes tele >>> eye 22/7)
doo" eywe 22/7")
22 cue (teste Fr==0") THe Boolean argument given to type() do> type ese)» function should have T (capital lette) for eee ee? ; > | True and F (capital letter) for False;
otherwise it will generate an error. Soo tape (8)
Pychon 3.6.8 (v3 0 32 bir (Invel)} on wind? Type “copyrighe™, “oredite* or “License()" for more information. >>> xel0 >>> eype (x) “elas. *ant'> >>> x090.8 So> pine (0) 30.5 >>> cype (8) Zelass ‘£loee'> >>> x oH" >>> expe () oles '#tr'> >»G)_len() function 4) ‘The len() function returns the length be a sequence (string, tuple or list) 0 For example, (the number of items) of an object. The argument may a mapping (dictionary), 1018, 16107 tus. Type "copyright", “credite* or *License()" for more infornat: >>> str® ‘Hello World" PA eae >>> Len(see) a >>> xe 2,2,3,4) >>> ten (x) 4 >>> = (wince! >>> lenis) ‘ >>> ae(1itcs", 2:°1P*, 3 >>> Tenia) s + ‘Spring’, ‘sumer’, ‘fa12") physics") round() function The round() function rounds a given number to the specified number of decimal places and returns the result. By default, round() function rounds a number to zero decimal places. The round() function takes two arguments. Syntax: Here, n is the number/expression to be rounded and p is the number of digits up to which n is to be rounded. n is a mandatory argument and can be an integer or a floating-point value while p is an optional argument and must be an integer. ound (n, p) The situations given below exhibit the behaviour of round{) for different sets of values for n and p: (pis not specified: n is rounded up to 0 digits of decimal and the result is an integer. If the first digit after the decimal value is 5 or >5, then the integer number is increased by 1. Forexample, _ round(12.452) returns 12 Here, first digit after the decimal number is 4, so the number remains unchanged. round(12.534) returns 13 Here, first digit after the decimal number is 5, so the number is increased by one. (il) pis 0: n is rounded up to 0 digits of decimal and the result is a float value. For example, _round(12.452,0) returns 12.0 round(12.534,0) returns 13.0 (iii) pis positive integer: n is rounded up to p by checking (p+1)" digit; ifitis 5 or >5, then p" digit is increased by 1 and the result is a float, For example, _round(12.452,1) returns 12.5 round(12.534,2) returns 12.53es, le eo ne aan 0 (iv) p isa negative integer: n is rounded up to p digits before the decimal by checking the p* digit; if itis § or >5, then the (p-1)" digit is increased by 1, all trailing p digits arg converted to zero and the result is a float. The trailing p digits are rounded off to 9 if case of negative value of p. For example, round(1234.56,-1) returns 1230.0 round(1258.4,-2) returns 1300.0 range() function The range() function is used to define a series of numbers and is particularly useful in ‘for loops. For example, >>> range (5) range (0, 5) The expression range(5) above generates a series of integers from zero and ends with 4 (5-1). © To show the list of numbers, we can use the command list(range(n)) >>> list (range (5)) POA 2," 3,4] © Wecan explicitly define the starting and ending number by specifying the two arguments for beginning and ending numbers: Syntax: range (begin, end) For example, >>> range (5, 9) range (5, 9) To show the list: >>> list (range(5, 9) [5, 6, 7, 8] ‘The above examples of range() demonstrated an increment of 1. We can change the way Python increments the number by introducing a third argument, the ‘step’ It can be a negative oF positive number, but never zero. Syntax: range(begin, end, stop) For example, >>> range (10, 71, 5) range(10, 71, 5) Invoking the list, we'll see this sequence of numbers: >>> list (range (10, 71, 5)) (10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 70){asthe programs become more lengthy into smaller segments called modutes, Amodule is a ~ enone functions and variables defined in Separate files. A module is simply file that contains Python code or a series of instructions and is saved with .py extension. nother ental ak en Stored in a file is called MODULE and this approach is known as modularization, which makes a program easier to understand, test and maintain. wee on - Ee ae Saar each module should contain functions that perform rela . some commonly-used modules predefined tasks and they are called libraries, Tae ee oes Modules: also make it easier to reuse the same code in more than one program. If we have written a set of functions that is needed in several different Programs, we can place those functions in a module. Then, ‘we can import the module in each Program that needs to call one of the functions. Once we import a module, we can refer to any of its functions or variables In our program, and complex, there arises a need for the tasks to be split Importing Modules in a Python Program Python provides import keyword to import modules in a program. There are two methods to import modules: (i) Importing entire Module(s): An entire module can be imported in the current program using import statement. The syntax to import the entire module is: import< ule name> For example, import math It gives access to all the functions of math module. = Toimport multiple modules in a program, the syntax is: import_
import* For example, from math import* Itgives access to all the functions of math module. * To import a particular function of the module, the syntax is: from
import
For example, from math import sqrt This will import only sqrt() function from the math module.* To import multiple functions, the syntax is: Le name> import
sqr + pow, pi This will import multiple functions, ie, sqrt, pow and pi functions of m ath module ing Program. As Is evident from the screenshot, it is not required to use math module Prefixed with the function name as it has already been imported using from statement. To import all methods from a module, the syntax is: mmodulename import* (Import everything from the file) This statement is used to import all the functions and const. For example, ‘ants from a module. For example, import math (2) Search for the file, “math.py” (b) Create space where modules definition a1 ind variable will be created, (€) Execute the statements in the module. import math result = math. sqrt (64) print (result)
You might also like
Hourglass Workout Program by Luisagiuliet 2
PDF
76% (21)
Hourglass Workout Program by Luisagiuliet 2
51 pages
12 Week Program: Summer Body Starts Now
PDF
87% (46)
12 Week Program: Summer Body Starts Now
70 pages
Read People Like A Book by Patrick King-Edited
PDF
57% (82)
Read People Like A Book by Patrick King-Edited
12 pages
Livingood, Blake - Livingood Daily Your 21-Day Guide To Experience Real Health
PDF
77% (13)
Livingood, Blake - Livingood Daily Your 21-Day Guide To Experience Real Health
260 pages
Cheat Code To The Universe
PDF
94% (79)
Cheat Code To The Universe
34 pages
Facial Gains Guide (001 081)
PDF
91% (45)
Facial Gains Guide (001 081)
81 pages
Curse of Strahd
PDF
95% (467)
Curse of Strahd
258 pages
The Psychiatric Interview - Daniel Carlat
PDF
91% (34)
The Psychiatric Interview - Daniel Carlat
473 pages
The Borax Conspiracy
PDF
91% (57)
The Borax Conspiracy
14 pages
The Secret Language of Attraction
PDF
86% (108)
The Secret Language of Attraction
278 pages
How To Develop and Write A Grant Proposal
PDF
83% (542)
How To Develop and Write A Grant Proposal
17 pages
Penis Enlargement Secret
PDF
60% (124)
Penis Enlargement Secret
12 pages
Workbook For The Body Keeps The Score
PDF
89% (53)
Workbook For The Body Keeps The Score
111 pages
Donald Trump & Jeffrey Epstein Rape Lawsuit and Affidavits
PDF
83% (1016)
Donald Trump & Jeffrey Epstein Rape Lawsuit and Affidavits
13 pages
KamaSutra Positions
PDF
78% (69)
KamaSutra Positions
55 pages
7 Hermetic Principles
PDF
93% (30)
7 Hermetic Principles
3 pages
27 Feedback Mechanisms Pogil Key
PDF
77% (13)
27 Feedback Mechanisms Pogil Key
6 pages
Frank Hammond - List of Demons
PDF
92% (92)
Frank Hammond - List of Demons
3 pages
Phone Codes
PDF
79% (28)
Phone Codes
5 pages
36 Questions That Lead To Love
PDF
91% (35)
36 Questions That Lead To Love
3 pages
How 2 Setup Trust
PDF
97% (307)
How 2 Setup Trust
3 pages
100 Questions To Ask Your Partner
PDF
78% (36)
100 Questions To Ask Your Partner
2 pages
The 36 Questions That Lead To Love - The New York Times
PDF
91% (35)
The 36 Questions That Lead To Love - The New York Times
3 pages
Satanic Calendar
PDF
25% (56)
Satanic Calendar
4 pages
The 36 Questions That Lead To Love - The New York Times
PDF
95% (21)
The 36 Questions That Lead To Love - The New York Times
3 pages
14 Easiest & Hardest Muscles To Build (Ranked With Solutions)
PDF
100% (8)
14 Easiest & Hardest Muscles To Build (Ranked With Solutions)
27 pages
Jeffrey Epstein39s Little Black Book Unredacted PDF
PDF
75% (12)
Jeffrey Epstein39s Little Black Book Unredacted PDF
95 pages
1001 Songs
PDF
70% (73)
1001 Songs
1,798 pages
The 4 Hour Workweek, Expanded and Updated by Timothy Ferriss - Excerpt
PDF
23% (954)
The 4 Hour Workweek, Expanded and Updated by Timothy Ferriss - Excerpt
38 pages
Zodiac Sign & Their Most Common Addictions
PDF
63% (30)
Zodiac Sign & Their Most Common Addictions
9 pages
Functions
PDF
No ratings yet
Functions
49 pages
Python Functions
PDF
No ratings yet
Python Functions
56 pages
Chapter 2 - Functions in Python NEW
PDF
No ratings yet
Chapter 2 - Functions in Python NEW
58 pages
Python Functions 1
PDF
No ratings yet
Python Functions 1
4 pages
Chapter-2 Function
PDF
100% (1)
Chapter-2 Function
40 pages
Day5-Facilitation Guide(Functions)
PDF
No ratings yet
Day5-Facilitation Guide(Functions)
9 pages
CH 2
PDF
No ratings yet
CH 2
7 pages
Functions in Python
PDF
No ratings yet
Functions in Python
9 pages
Python unit 4
PDF
No ratings yet
Python unit 4
11 pages
FUNCTIONINPYTHON
PDF
No ratings yet
FUNCTIONINPYTHON
32 pages
XII - CS_Revision Tour
PDF
No ratings yet
XII - CS_Revision Tour
16 pages
Oop2 Midterm Module 3
PDF
No ratings yet
Oop2 Midterm Module 3
6 pages
CS (XII) Ch-2 Functions Notes
PDF
No ratings yet
CS (XII) Ch-2 Functions Notes
50 pages
1.5 Python Built-In Functions
PDF
No ratings yet
1.5 Python Built-In Functions
23 pages
_Python_
PDF
No ratings yet
_Python_
6 pages
PYTHON-FUNCTIONS.pptx
PDF
No ratings yet
PYTHON-FUNCTIONS.pptx
25 pages
Unit 3 Java
PDF
No ratings yet
Unit 3 Java
67 pages
Bscit Python 3 Org
PDF
No ratings yet
Bscit Python 3 Org
56 pages
python_notes_DS_IanDomel
PDF
No ratings yet
python_notes_DS_IanDomel
10 pages
Functions
PDF
No ratings yet
Functions
22 pages
Code Reusability
PDF
No ratings yet
Code Reusability
33 pages
Chapter 2 Functionseng 1.PDF (1)
PDF
No ratings yet
Chapter 2 Functionseng 1.PDF (1)
32 pages
PAss
PDF
No ratings yet
PAss
6 pages
Python Functions
PDF
No ratings yet
Python Functions
20 pages
Python Unit 04
PDF
No ratings yet
Python Unit 04
48 pages
Chapter 4
PDF
No ratings yet
Chapter 4
55 pages
Functions In python
PDF
No ratings yet
Functions In python
9 pages
Unit 4 Python
PDF
No ratings yet
Unit 4 Python
21 pages
Python Functions
PDF
No ratings yet
Python Functions
28 pages
4. Python Functions, Modules and Packages
PDF
No ratings yet
4. Python Functions, Modules and Packages
23 pages
Unit 4 1
PDF
No ratings yet
Unit 4 1
16 pages
Py4Inf 04 Functions Print
PDF
No ratings yet
Py4Inf 04 Functions Print
8 pages
Python Functions
PDF
No ratings yet
Python Functions
25 pages
pdf
PDF
No ratings yet
pdf
27 pages
Function Notes Chapter 2
PDF
No ratings yet
Function Notes Chapter 2
6 pages
PPS Unit-4
PDF
No ratings yet
PPS Unit-4
120 pages
Programming CH 8
PDF
No ratings yet
Programming CH 8
57 pages
Introduction To Python (YouTube @ManojPN) Module 1
PDF
No ratings yet
Introduction To Python (YouTube @ManojPN) Module 1
20 pages
Python Notes Unit-2
PDF
No ratings yet
Python Notes Unit-2
41 pages
Chapter No 04 PWP-1
PDF
No ratings yet
Chapter No 04 PWP-1
91 pages
Chapter 4 - Python For Everyone - Trinket
PDF
No ratings yet
Chapter 4 - Python For Everyone - Trinket
17 pages
Paython
PDF
No ratings yet
Paython
66 pages
Chapter - 4 Iotm
PDF
No ratings yet
Chapter - 4 Iotm
14 pages
Python C C Presentation 2
PDF
No ratings yet
Python C C Presentation 2
73 pages
Python
PDF
No ratings yet
Python
60 pages
Data Science - Sec2
PDF
No ratings yet
Data Science - Sec2
23 pages
Lesson 10 Slides
PDF
No ratings yet
Lesson 10 Slides
36 pages
Modules in Python
PDF
No ratings yet
Modules in Python
71 pages
What Is Python
PDF
No ratings yet
What Is Python
10 pages
Unit 4
PDF
No ratings yet
Unit 4
38 pages
Ch2-A.pptx
PDF
No ratings yet
Ch2-A.pptx
47 pages
pythonlearn. chapter 4. Extract[55-68]
PDF
No ratings yet
pythonlearn. chapter 4. Extract[55-68]
14 pages
Function CC
PDF
No ratings yet
Function CC
6 pages
Exploring Python Functions Reading - Functions
PDF
No ratings yet
Exploring Python Functions Reading - Functions
9 pages
Python Book
PDF
No ratings yet
Python Book
110 pages
Xii Cs Function Notes
PDF
No ratings yet
Xii Cs Function Notes
46 pages
Python Programming Unit Ii: Prof - Ajay Pashankar Assistant Professor Department of Cs & It K.M.Agrawal College Kalyan
PDF
No ratings yet
Python Programming Unit Ii: Prof - Ajay Pashankar Assistant Professor Department of Cs & It K.M.Agrawal College Kalyan
58 pages
Pythonlearn 04 Functions
PDF
No ratings yet
Pythonlearn 04 Functions
24 pages
Chapter 2
PDF
No ratings yet
Chapter 2
27 pages
Affiliated To Central Board of Secondary Education - New Delhi
PDF
No ratings yet
Affiliated To Central Board of Secondary Education - New Delhi
4 pages
Physics Question Paper Answer Key
PDF
No ratings yet
Physics Question Paper Answer Key
8 pages
Physics Question Paper
PDF
No ratings yet
Physics Question Paper
6 pages
chp-6 Computer Networks Scan
PDF
No ratings yet
chp-6 Computer Networks Scan
60 pages