Exp7 Python
Exp7 Python
#PROBLEM DEFINITIONS
(1) Write a script that converts numbers to characters using map function.
def num_char(num):
return char(num)
numbers:[72,69,76,76,79]
characters:map(num_char, numbers)
print(list(characters))
OUTPUT
[‘H’,’E’,’L’,’L’,’O’]
(2) WAP script that gives the ASCII value of characters using map function
def ascii(char):
return ord(char)
characters = [‘A’,’B’,’C’,’D’]
ascii_val = map(ascii characters)
print(list(ascii_val))
OUTPUT
[65,66,67,68]
(3) Write a user defined function that square all the numbers in a list. Use a map function.
def sq(num):
return num**2
nums[2,4,6,8]
square=map(sq,nums)
print(list(square))
OUTPUT
[4,16,36,64]
(4) Write a user defined function to filter and print only the vowels in a given list and
print them (use filter functions).
def vowel(n):
v=[‘a’,’e’,’i’,’o’,’u’]
if n in v:
return true
else:
return false
list=[‘a’,’b’,’c’,’d’,’e’,]
vowels=filter(vowel,list)
for I in vowels:
print(i)
OUTPUT
a
e
(5) Write a user defined function to filter out even and odd number in a given list and
display the respective list separately (filter function and lambda function)
def given (n):
if n in vow:
return n
mylist=[1,2,3,4,5,6,7,8,9]
mylist 2=list(filter(lambda n:nx2==0,mylist2))
print(mylist2)
odd=list(filter(lambda n:n^2!=0,mylist))
print(odd)
OUTPUT
[2,4,6,8]
[1,3,5,7,9]
(6) Write a script to calculate the factorial of a number using reduce function.
import functools
def factorial(n):
if n==0:
return 1
else:
return functools.reduce(lambda x,y:x*y, range (I,n+1))
print(factorial(3))
OUTPUT
6
(7) [i]Write a python script to map the lowercase city name in list into uppercase.Use
lambda function.
city=[‘mumbai’,’delhi’,’kolkata’]
low=list(map(lambda x:x.upper(),city)
print(low)
OUTPUT
[‘MUMBAI’,’DELHI’,’KOLKATA’]
[ii]Write a python script to sum all the numbers in a list using reduce and lambda function.
from functools import reduce
list=[1,3,7,8,10]
m=reduce(lambda a,b:a+b,list)
print(“sum:”,m)
OUTPUT
Sum:29
[iii] Write a python script to find maximum of all the numbers in a list using reduce and
lambda function.
from functools import reduce
list=[1,3,7,8,10]
m=reduce (lambda a,b:a if a>b else b,list)
print(“The maximum is :”,m)
OUTPUT
The maximum:10
CONCLUSION: Hereby, we have understood and implemented library functions and user
defined functions.
****************************************************************