Python program on unorderd datatype dictionary Pract 6

Write a Python program to sort (ascending and descending) a dictionary by value.
Write a Python program to sort (ascending and descending) a dictionary by key.
Write a Python program to concatenate following dictionaries to create a new one.
Write a Python program to sum all the items in a dictionary.

Python program on list comprehension, enumerate Pract 5

Python program on list, list comprehension, enumerate function
Write a Python program to define a function that takes two lists and return True if they have at least one common member.
Write a python program to show use on enumerate() and its return value
Write a Python program to clone or copy a list.
Write a Python program to print a specified list after removing the 0th, 4th and 5th elements

Easy Python program on pangram & function definition pract 4

Pangram and function definition ITVoyagers

WRITE A PYTHON PROGRAM TO DEFINE A FUNCTION TO CHECK A SENTENCE AND SEE IF IT IS A PANGRAM OR NOT.

A pangram is a sentence that contains all the letters of the English . alphabet at least once,
for example: The quick brown fox jumps over the lazy dog.
2.Take a list, say for example this one:
a = [1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89]
and write a program that prints out all the elements of the list that are less than 5.

Easy Function definition and calling (Python)- Pract 3

Function Definition ITVoyagers

Write a python program to define a function to check that given character is vowel or not.
Write a python program to define a function to compute length of given string.
Write a python program to define a function histogram() to print histogram([4,9,7])
****
*********
*******