This course was created with the
course builder. Create your online course today.
Start now
Create your course
with
Autoplay
Autocomplete
Previous Lesson
Complete and Continue
Python Core & Advanced (Hands-On-Lab)
Setting Up Python Environment
Downloading and Installing Python Software (8:40)
Downloading and Installing PyCharm IDE (10:32)
Python Course Material
Python
1. Introduction to Python Programming
Introduction Video (0:54)
1. Write a Program to Print Current Version of Python (4:21)
2. Write a Program to Print your First Name and Last Name using two print statements, but the output should be printed in same line. (2:56)
3. Write a Program to print all the keywords of python along with its count. (3:28)
4. Display syntax of print() function using help() function. (2:24)
5. Write a Program to Declare two variables no1,no2 and initialize with 100, 25 and perform following operations Addition, Subtraction, Multiplication, Division & Remainder (6:03)
6. Write a Program to Print "Hello World" Message and Run it from Command Prompt/Power Shell (3:56)
7. Open Command Prompt/Windows Power shell and perform any arithmetic operation of your choice. (4:18)
8. Write a program to declare two variables no and d and initialize with 10 and 3 respectively and print quotient and remainder. (3:33)
9. Print python version and pip version from command prompt (1:53)
10. Write program to declare two variables b and p and initialize with 2 and 4 respectively and print b power of p using arithmetic operator. (2:35)
11. Explore any 10 external packages of python and display their names and usages. (16:50)
12. Install any two external packages, check them, import them, and uninstall them (5:32)
13. Write a program to print "Welcome Message" using any python online IDE. (4:35)
14. Write a Program to print your First Name 10 times (2:08)
15. Write a Program to Print the First name, Middle Name and Last name with arrows in between the names. Ex: Atish-->Kumar-->Jain Note: Write this Program using NotePad (4:20)
16. Write a Python Program to work with square root and power functions. (4:34)
17. Check PIP Version, and if it is the older version then upgrade to latest version and again downgrade to older version. (6:35)
Source code Files
2. Variables & Datatypes
Introduction Video (0:40)
1. Write a Program to read two Numbers and Print their Sum. (3:53)
2. Write a Program to read two inputs and display their datatypes and ids. (6:59)
3. Write a Program to read two integers and compare their identity. (4:02)
4. Write a Program to read Total time is minutes and convert into hours and minutes. (6:13)
5. Write a Program to Find total and Average for Inputted 3 Subjects. (4:32)
6. Write a program calculate bill amount for the inputted quantity and price. Note: price and quantity can be integer or decimal value. (3:34)
7. Write a Program to print sum of two numbers(code should be written in one line). (2:27)
8. Program to swap the values of two variables A and B (3:41)
9. Program to swap the values of two variables A and B without using 3rd variable. (5:37)
Source code Files
3. Conditional Statements
Introduction Video (0:49)
1.Write a program to read 2 no's and check which is the biggest one and check for the similarity also. (4:00)
2. Write a program to check whether the inputted no is positive, or negative or neutral. (4:12)
3. A company decided to give bonus of 10% to all the employees if they have more than 5 years of Service. Ask the user for their salary and year of service and print the bonus amount. (4:36)
4. Read the values of length and breadth of a Shape from the user and check if it is square or Rectangle. (3:04)
5. A Departmental store Gives 10% Discount if the Total Bill Amount is more than 1000 other wise 5% Discount. Write a Program to Print Discount Amount and Final Bill Amount. (4:04)
6. A school has following rules for grading system-Write a Program to Print Grades from the Given Details: (5:53)
7. Take input of age of 3 people by user and determine oldest among them. (5:59)
8. Write a program to print absolute value of a number entered by user. E.g.- INPUT: 1 OUTPUT: 1 INPUT: -5 OUTPUT: 5 (3:49)
9. A student will not be allowed to sit in exam if his/her attendance is less than 75%. Write Program Based on the Given Details (8:59)
10. Write a program to check if a year is leap year or not. (5:58)
11. Write a Program to Check Whether the Person is Eligible for Bonus or not Based Upon the Data Given Below. (12:02)
12. Write a Program to Read two Positive Integers and Display their absolute Difference. (4:51)
13. Write a Program to Read name and Age of two Friends and Display who is elder than whom. (5:15)
14. AH Digitals is a Leading Mobile Store in the Market, they runs various attractive offers to sell High-end mobiles to their customers, They Offer Credit Facility to their regular customers with certain criteria. (13:14)
15. Write a program to read marks of 3 subjects, find total, average and grade only if every subject crosses 40 marks. Otherwise display in which subjects he/she is failed. (10:27)
Source code Files
4. Loops
Introduction (1:58)
1. Write a Program to Print Natural Numbers till N. (3:17)
2. Write a Python Program to Print Odd Numbers from 1 to N. (2:46)
3. Write a Program to Print Natural Numbers from N to 1 (3:13)
4. Write a Program to Print Table for Inputted NO Till N using for Loop (3:06)
5. Write a Program to Print Multiples of 5 Till 100 (2:29)
6. Write a Program to Print Biggest of 10 numbers (11:40)
7. Write a Program to Check whether the inputted Numbers is Armstrong no or not. Ex: 0,1,153,370,371 and 407 (6:34)
8. Write a Program to print Armstrong numbers till 1000 Ex: 0,1,153,370,371 and 407 (5:03)
9. Write a Program to Print this Pattern using single for loop. (3:55)
10. Write a Program to read your first name and Print the Following Pattern, the number of rows will be length of your name (3:39)
Source code Files
5. Working with Strings In Python
Introduction (0:50)
1. Write a Program to Print Name and Address. (2:52)
2. Write a Python Program to read a name and display with Greeting Message. (6:19)
3. Write a Program to read name and date of Joining and print the joining Letter from the Given Template (6:29)
4. Write a Program to Detect double space from the inputted string and print its index position. (3:46)
5. Program to Replace double space with single space in the inputted string. (3:00)
6. Program to Print a Leave Letter using escape sequence characters. (4:44)
7. Write a Program to Reverse the inputted string using for loop. (2:35)
8. Write a Program to Reverse the inputted String using While loop (3:34)
9. Write a Program to Check whether the inputted string Palindrome or not without using any loops. (3:58)
10. Write a Program to Read a String and Display Each Character of the String on new line using for loop. (2:01)
11. Write a program to read a string and display its length without using len() function. (2:45)
12. Write a Program to count number of uppercase letters, lowercase letters, digits and special symbols from the inputted email id. (6:48)
13. Write a Program to read First name and Last name in one variable and then again read middle name in another variable, now insert middle name in the middle of the first and last names. (4:34)
14. Write a Program to Find the Last Position of the Word “Python” in the given string. "Python is Very Easy and Powerful Language, Now days Python is Considered as Beginners Language." (3:42)
15. Write a Program to Find Length of the inputted string without spaces. (2:19)
Source Code Files
6. Working with List,Tuple,Set & Dictionary
Introduction (1:28)
1. Write a Program to Store names of 5 friends in a list enter by the user. (3:28)
2. Write a Program to Accept Marks of 5 subjects and display them in sorted order, Print Sum, Maximum and Minimum Marks. (6:58)
3. Write a Program to read a word and convert it into list and display using slicing. (3:03)
4. Write a Program to Read Marks of N Subjects in a list, and display the maximum and minimum marks without using max and min methods. (6:51)
5. Write a Program to read N Heterogeneous elements and Check whether the list is empty or not, if the list is empty display message –“List is Empty” if list is not empty then display the list of items. (4:37)
6. Write a Program to Create Tuple with 1 element using parenthesis (). (2:58)
7. Write a Program read 5 Fruits in tuple and replace with Fruit name with fruit name and juice ex: Apple --> Apple Juice (10:19)
8. Write a Python program to check whether an element exists within a tuple, if exists then print how times it exists. (4:36)
9. Write a Program to Create a Tuple with Employee information(Employee no, Name, Salary) and assign it to the respective individual variables(Tuple Unpacking). (3:42)
10. Write a Program to Create Tuple with 10 Random Numbers in between 1 to 10, read one element and check how many times the element appears. (4:59)
11. Write a Python Program to Remove Last Element from a tuple. (4:40)
12. Write a Python program to remove all empty tuple(s) from a list of tuples. L = [(), (), ('',), ('a', 'b'), ('a', 'b', 'c'), (),('d')] (3:12)
13. Write a Program to Create a Dictionary of Input-output Devices with their usage. Provide user with an option to look it up.ex: Keyboard – Its an input Device (9:02)
14. Write a Program to input 10 numbers from the user and display all the unique numbers in ascending and descending order. (3:48)
15. Create a set with 100 as int and 100 as string. (1:37)
16. Create an empty set using curly braces. (3:04)
17. Program read names of 5 students and their Favorite Programming Language and Store in a Dictionary. (6:09)
18. If keys of a dictionary (names of two persons) are same, What will Happen, try with the previous program (ie Program no 17) (4:37)
19. If values of a dictionary (Languages of two persons) are same, what will happen, try with the previous program (ie Program no 17) (1:36)
20. Create a tuple without using tuple() function and parenthesis. (1:21)
21. Create one tuple and one list to store names and ages of 3 students without using tuple() or list() functions. (2:40)
22. Create a tuple with 10 Items and display fist and last elements.Note: Don’t use backward indexing. (4:18)
23. Write a Program to read Subject in list and their marks in tuple, if the student gets 0 in any of the subject, then display in which subject, he got zeros. (11:48)
24. Write a Program to demonstrate difference between remove() and discard() method of a set. (4:31)
25. Write a Program to store name and price of the products and display total of all the products. (2:59)
Source Code Files
7. Arrays & NumPy
1. Write a Program to Create an Array and display the elements in reverse order (6:07)
2. Write a Program to Create an Array and perform the operations: appending, inserting, updating, deleting and searching (7:55)
6. A school has following rules for grading system-Write a Program to Print Grades from the Given Details:
Lesson content locked
If you're already enrolled,
you'll need to login
.
Enroll in Course to Unlock