- Home
- Course Category
- Course Result
- Course Detail
Hot Line: 08377052947

-
Teacher
-
-
Category
Programming, Website Development
-
Duation
15 hours
-
Reviews
-
Call Us for Details
Basic Python Course Questions

Python programming language is a general-purpose, dynamic programming Language.Python language have a large library of packages which makes python for beginners a language of choice.
Python Programs for Beginners
Source Code:
Find if given year is Leap or not
# Store number num = input('Enter the Year: ') if(num%4==0): print("Leap year") else: print("Not a leap year")
Output
Enter the year: 2012 Leap year