
This course includes our updated coding exercises so you can practice your skills as you learn.
See a demo
Proposed exercises
1. Write a program to check whether a number is negative, positive or zero
Solution: https://github.com/martika810/python_for_abs_beginners/blob/master/if_statements/if_ex1.py
2. Write a program to check whether a character is alphabet or not
Solution: https://github.com/martika810/python_for_abs_beginners/blob/master/if_statements/if_ex2.py
3. Write a program to input week number and print week day
Solution: https://github.com/martika810/python_for_abs_beginners/blob/master/if_statements/if_ex3.py
4. Write a program to count total number of notes in given amount 200,100,50,20,10,5
Solution: https://github.com/martika810/python_for_abs_beginners/blob/master/if_statements/if_ex4.py
5. You are looking for a new member to expand your programming.It should be a person from ages 18 to 40
Write a program to ask the user’s age and whether the user has previous python experience(using 'y' or 'n').
Display a message indicating whether the person is eligible to join your team.
Solution: https://github.com/martika810/python_for_abs_beginners/blob/master/if_statements/if_ex5.py
Proposed exercises
1. Print all natural numbers (from 1 to 10) in reverse order
Solution: https://github.com/martika810/python_for_abs_beginners/blob/master/for_loops/for_ex1.py
2. Print all even numbers between 1 to 100
Solution: https://github.com/martika810/python_for_abs_beginners/blob/master/for_loops/for_ex2.py
3. Find sum of all natural numbers between 1 to n
Solution: https://github.com/martika810/python_for_abs_beginners/blob/master/for_loops/for_ex3.py
4. Print the multiplication table of any number
Solution: https://github.com/martika810/python_for_abs_beginners/blob/master/for_loops/for_ex4.py
Proposed exercises
1. Print all natural numbers (from 1 to 10) in reverse order
Solution: https://github.com/martika810/python_for_abs_beginners/blob/master/while_loops/while_ex1.py
2. Print all even numbers between 1 to 100
Solution: https://github.com/martika810/python_for_abs_beginners/blob/master/while_loops/while_ex2.py
3. Find sum of all natural numbers between 1 to n
Solution: https://github.com/martika810/python_for_abs_beginners/blob/master/while_loops/while_ex3.py
4. Print the multiplication table of any number
Solution: https://github.com/martika810/python_for_abs_beginners/blob/master/while_loops/while_ex4.py
Proposed exercises
1. Find sum of all natural numbers between 1 to n using functions
Solution: https://github.com/martika810/python_for_abs_beginners/blob/master/functions/function_ex1.py
2. Print the multiplication table of any number using functions
Solution: https://github.com/martika810/python_for_abs_beginners/blob/master/functions/function_ex2.py
Learn Python programming with this Python tutorial for absolute beginners. You will learn the basic of programming. You don't need to know anything about programming to follow this tutorial however you should know basic about computer, like open a program, save a file, etc. By the end of this tutorial you will be able to program a guessing game