Posts

Showing posts with the label programs using built-in function

11.Programming Assignment 2( Programs using built-in functions and modules)

Read the blog post  https://pythonformlktuminor.blogspot.com/2020/08/built-in-functions-modules-and-packages.html  before attempting the following programs Programs to try using built in functions ,modules and  packages 1.Read a number in decimal and convert it into different bases. 2.Read a binary number (Eg: 0b101010) and convert it into different bases.( use eval,oct,hex functions) 3.Read a hexa decimal number (Eg: 0xa3) and convert it into different bases. 4.Read an octal number (Eg:012) and convert it into different base. 5.Read a string and find the length.( use len) 6.Find the biggest and smallest of three numbers.( use min and max function) 7.Read a number and find its factorial. ( use factorial function from math) 8.Find the number of digits in the factorial of a given number.( convert into string and find length) 9. Read a Year and print the calendar of that year (Hint: import calendar ;print(calendar.calendar(2017)) will display 2017 calendar. 10.Read a Year and month and p