
Explore common real-world programs in Python programming, understand problem statements and solution types, and practice coding by pausing to code and comparing solutions to improve.
learn to compute the least common multiple of all list elements by iteratively applying lcm to pairs using gcd from the math module.
Build a program to check if a number is an Armstrong number by summing the cubes of its digits using modulo and division. The example 153 illustrates the check.
Learn to split a list into two outputs by separating even and odd elements, using append to build the two lists, and returning both from a function.
Design and run a basic calculator in Python that uses a while loop to perform addition, subtraction, multiplication, and division based on user input, with an option to continue.
This course will helpful for those students who have just learnt the basic of Python programming and want to explore the common programming problem which comes across real world application. This course will explore common programs like check string is palindrome or not, find largest number, reverse the number; sorting of number, create basic calculator etc