Hrushikesh Bhujbal

M.Sc Python Programming Assignment 1

M.Sc Python Programming Assignments Assignment 1 Question: Create a program that asks the user to enter their name and their age. Print out a message addressed to them that tells them the year that they will turn 100 years old. Code: import datetime def calculate_year_of_turning_100(age): current_year = datetime.datetime.now().year year_of_turning_100 = current_year + (100 – age) …

M.Sc Python Programming Assignment 1 Read More »

SE Computer Engineering Practical 20 solution

SE Computer Engineering Practical 20 solution Question: Write python program to store 10th class percentage of students in array. Write function for sorting array of floating point numbers in ascending order using radix sort and display top five scores Code: Output: Before Radix Sort: [89.5, 56.0, 85.75, 76.2, 93.5, 87.8, 60.25, 48.0, 94.1, 80.9] After …

SE Computer Engineering Practical 20 solution Read More »

Tech Amplifier Final Logo