Learn how to convert hours to seconds in Python. It will take the hours value as input from the user and convert it to seconds.
ReadPython program to convert a date to ISO8601 format. isoformat() method is provided to convert a datetime object to ISO8601 in android.
ReadPython program to find the nth number which is square and also cube of another number. Print all numbers from 1 to n which are square and cube of another number.
ReadPython program to convert a key-value string to a dictionary. We will learn how to do that by using split and by using map in python.
ReadPython program to count the total number of repeating digits in a given number. We will learn two different ways to solve this problem.
ReadPython program to count digits in a string. We will learn how to do that by using a loop, using sum(), using map() and using regular expression.
ReadLearn how to check if a series is Geometric progression or GP or Geometric series in Python. This program will take one array and print one boolean value based on the input array.
ReadPython program to print geometric progression, GP or Geometric series. This program will take the values as inputs from the user and print the series.
ReadWrite a python program to check if a series is Arithmetic progression/AP/Arithmetic series or not. It will take one series as input and print the result.
ReadWrite a python program to print arithmetic progression series. It will take the start value, d, and total numbers and print that series.
Read