Udemy
    •  
    •  
    •  
    •  
    •  
    •  
    •  
    •  
Turn what you know into an opportunity and reach millions around the world.
Learn More
Your cart is empty.
Keep shopping
Python Programming
Rating: 4.4 out of 5(87 ratings)
6,428 students

Python Programming

Time to deep dive into Python Programming
Created byPradeep Chelani
Last updated 7/2020
English

What you'll learn

  • Python Common Programs
  • Python Programming
  • Python Tricks

Course content

1 section25 lectures1h 55m total length
  • Introduction0:47

    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.

  • Program 1: Check String is Palindrome or not9:58
  • Program 2: Print first n number of Fibonacci series4:02
  • Program 3: Find Max in list without using max function3:42
  • Program 4: Sum of digits in number4:29
  • Program 5: Print Multiplication Table2:42
  • Program 6: GCD of list3:41
  • Program 7: LCM of List4:28

    learn to compute the least common multiple of all list elements by iteratively applying lcm to pairs using gcd from the math module.

  • Program 8: Reverse list without using range or reverse function5:03
  • Program 9: Remove odd position characters from string3:16
  • Program 10: Find number of occurrence of elements2:59
  • Program 11: Program to find n-th largest number in the list3:14
  • Program 12: Remove all duplicates from list2:40
  • Program 13: Inverted Star Pattern3:33
  • Program 14: Check Number is Armstrong number or not5:21

    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.

  • Program 15: Remove nth occurence of number from list5:14
  • Program 16: Rotate the list4:17
  • Program 17: Find Median of List5:36
  • Program 18: Reverse the number6:28
  • Program 19: Separate odd and even numbers from list4:35

    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.

  • Program 20: Find Unique factors of a number5:04
  • Program 21: Select card randomly from Deck3:45
  • Program 22: Type of Triangle6:48
  • Program 23: Basic Calculator7:36

    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.

  • Program 24: Bubble Sort5:49

Requirements

  • Python Basic

Description

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

Who this course is for:

  • Students who knows Python basic and want to learn about common Python programs