Python Program to Check Prime Number

What is Prime Number? A positive integer greater than 1 which has no other factors except 1 and therefore the number itself is named a prime number. 2, 3, 5, 7 etc. are prime numbers as they are doing not have the other factors. But 6 isn’t prime (it is composite) since, 2 x 3 […]

Python Program to seek out the Greatest Value Among Three Numbers

Program mentioned in below, the three numbers are stored in num1, num2 and num3 respectively. We’ve used the if…elif…else ladder to seek out the Greatest among the three and display it. Source Code # Python program to seek out the Greatest number among the three input numbers # change the values of num1, num2 and […]

Python Program:Check Leap Year

What is Leap year: A leap year is exactly divisible by 4 apart from century years (years ending with 00). The century year will be leap year if it is perfectly divisible by 400. For example, 2019 is not a leap year 1700 is a not leap year 2016 is a leap year 2000 is […]

Python Program to see if a Number is Odd or Even

Python Program to see if a Number is Odd or Even CODE OUTPUT # Python program to see if the input number is odd or maybe . # variety is albeit division by 2 provides a remainder of 0. # If remainder is 1, it’s odd numbernum = int(input(“Enter a number: “))if (num % 2) == 0:   print(“{0} is Even”.format(num))else:   print(“{0} is Odd”.format(num)) Enter a number: 4343 […]

পাইথন ইন্সটলেশন

ইন্সটলেশন আপনি যদি লিনাক্স বা ম্যাক ব্যবহারকারী হন তবে আপনার কম্পিউটারে পাইথন দেওয়াই থাকে। এই কোর্স লেখা পর্যন্ত (জুলাই ২০১৬) এই মেজর দুটি অপারেটিং সিস্টেমের সাথে যে পাইথন বিল্ট ইন অবস্থায় ডিফল্ট হিসেবে থাকে তার ভার্সন হচ্ছে Python 2.7.x. কিন্তু, এই কোর্সটি লেখা হচ্ছে Python 3.5.x এর উপর ভিত্তি করে। আসলে পাইথন ২ এবং ৩ ভার্সনের মধ্যে সিনট্যাক্স […]