Assignment-package
Do the programs in colab. Rename the note book file with youname-rollno.ipynb . Convert the file into pdf. Follow the link below to learn how to convert your ipynb file to pdf. https://saturncloud.io/blog/convert-google-colab-notebook-to-pdf-html/ share the pdf file in group 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.Find the number of digits in the factorial of a given number.(i/p rollno+1000) 4. What will be the result of the following expressions in Python? i) (50 %-4 - 5 * *6) // 4 ii) not (10 < 5) or (5 = = 5) iii) True and 5 5.Read a Year and month and print the calendar of the specified month.( Use your date of birth and mention the day name you are born) 6.Print a random number between 1 and 100 ( use random module) 7.Print the python version you are using ( use sys module) 8.Print the files in the current directory ( use os module) ...