Month: February 2021

Python Exercise – Check whether a specified value is contained in a group of values

  (Python Example for Citizen Data Scientist & Business Analyst)   Write a Python program to check whether a specified value is contained in a group of values. Test Data: 3 -> [1, 5, 8, 3] : True -1 -> [1, 5, 8, 3] : False   Sample Solution Python Code: def is_group_member(group_data, n): for …

Python Exercise: Test whether a passed letter is a vowel or not

  (Python Example for Citizen Data Scientist & Business Analyst)   Write a Python program to test whether a passed letter is a vowel or not. Test whether a passed letter is a vowel or not Sample Solution Python Code: def is_vowel(char): all_vowels = ‘aeiou’ return char in all_vowels print(is_vowel(‘c’)) print(is_vowel(‘e’))   Sample Output: False …

Python Exercise: Find whether a given number is even or odd

  (Python Example for Citizen Data Scientist & Business Analyst)   Write a Python program to find whether a given number (accept from the user) is even or odd, print out an appropriate message to the user.   Sample Solution Python Code: num = int(input(“Enter a number: “)) mod = num % 2 if mod …

Python Exercise: Count the number 4 in a given list

  (Python Example for Citizen Data Scientist & Business Analyst)   Write a Python program to count the number 4 in a given list.   Sample Solution Python Code: def list_count_4(nums): count = 0 for num in nums: if num == 4: count = count + 1 return count print(list_count_4([1, 4, 6, 7, 4])) print(list_count_4([1, …

Python Exercise: Calculate the sum of three given numbers

  (Python Example for Citizen Data Scientist & Business Analyst)   Write a Python program to calculate the sum of three given numbers, if the values are equal then return thrice of their sum.   Sample Solution Python Code: def sum_thrice(x, y, z): sum = x + y + z if x == y == …

Python Exercise: Test whether a number is within 100 of 1000 or 2000

  (Python Example for Citizen Data Scientist & Business Analyst)   Write a Python program to test whether a number is within 100 of 1000 or 2000. Python abs(x) function: The function returns the absolute value of a number. The argument may be an integer or a floating point number. If the argument is a …

Python Exercise: Get the the volume of a sphere with radius

  (Python Example for Citizen Data Scientist & Business Analyst)   Write a Python program to get the the volume of a sphere with radius 6. Python: Volume of a Sphere A sphere is a three-dimensional solid with no face, no edge, no base and no vertex. It is a round body with all points …

Python Exercise: Calculate number of days between two dates

  (Python Example for Citizen Data Scientist & Business Analyst)   Write a Python program to calculate number of days between two dates. Python datetime.date(year, month, day) : The function returns date object with same year, month and day. All arguments are required. Arguments may be integers, in the following ranges: MINYEAR <= year <= MAXYEAR 1 <= month <= 12 1 <= day <= number of days in the given month and year   …

Python Exercise: Print the calendar of a given month and year

  (Python Example for Citizen Data Scientist & Business Analyst)   Write a Python program to print the calendar of a given month and year. Note: Use ‘calendar’ module. Python calendar.month(theyear, themonth, w=0, l=0): The function returns a month’s calendar in a multi-line string using the formatmonth() of the TextCalendar class. ‘l’ specifies the number …

Python Exercise: Display the first and last colors from a given list

  (Python Example for Citizen Data Scientist & Business Analyst)   Write a Python program to display the first and last colors from the following list. color_list = [“Red”,”Green”,”White” ,”Black”] Sample Solution:- Python Code: color_list = [“Red”,”Green”,”White” ,”Black”] print( “%s %s”%(color_list[0],color_list[-1])) Sample Output: Red Black   Display the first and last colors from a given …