-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAssignment-2_Soln.txt
More file actions
74 lines (49 loc) · 964 Bytes
/
Assignment-2_Soln.txt
File metadata and controls
74 lines (49 loc) · 964 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
Questions
Write a function which returns max of 2 numbers. We can use if, elif and else, right?
Find the output - Concept of local and global variables
a = 60
def func(z):
print("z = ", z)
a = 2
print('Changed local a to', a)
func(a)
print('Global a is still', a)
What is the use of id(), print() function in python? You know the interpreter trick!
What's the output:
def cube(x):
return x * x * x
x = cube(3)
print x
Lets find the output , again! :smiley:
def foo(k):
k[0] = 1
q = [0]
foo(q)
print(q)
Try this, find output?
def foo(i, x=[]):
x.append(x.append(i))
return x
for i in range(3):
y = foo(i)
print(y)
Answers
1. Answer
def maxno(a,b):
if(a>b)
return a
else
return b
2. Answer
z = 60
Changed local a to 2
Global a is still 60
3. Answer
id() returns the identity of an object.
print() prints the values to a stream.
4.Answer
27
5. Answer
[1]
6. Answer
[0, None, 1, None, 2, None]