Category Archives: Python Programming Language

Python Program Print Hollow Diamond Star Pattern

Python Program Print Hollow Diamond Star Pattern- # Number of rows row = 7 # this code will print upper part of hollow diamond pattern for i in range(1, row+1): for j in range(1,row-i+1): print(” “, end=””) for j in range(1, 2*i): if j==1 or j==2*i-1: print(“*”, end=””) else: print(” “, end=””) print() # now… Read More »

Loading

Python Program Convert Gallons To Litres Using Function

Python Program Convert Gallons To Litres – To convert gallons to liters in Python, you can use the following simple program. The conversion factor is 1 US gallon = 3.78541 liters. This program defines a function gallons_to_liters that takes the number of gallons as input and returns the equivalent amount in liters. It then takes… Read More »

Loading

Python Program Execution Time Calculator

Python Program Execution Time Calculator – You can calculate the execution time of a Python program using the time module. Here’s a simple Python program that demonstrates how to measure the execution time of a block of code: import time # Record the start time start_time = time.time() # Your code to be measured goes… Read More »

Loading

Python Different Counts in String

Python Different Counts in String – Python program to count uppercase letters, lower case letters, vowels, consonants and spaces in the given string.   #Python program to count upper case letters, lower case letters #vowels, consonants and spaces in a string uppercase=0 lowercase=0 vowels=0 consonants=0 spaces=0 string=input(“Enter a String: “) for ch in string: if… Read More »

Loading

Python Program Check Positive Number

Python Program Check Positive Number – Write a Python program to input a number and check whether the given number is positive, negative or zero. Use Python if-elif-else construct. Python Program Check Positive, Negative or Zero Number # Python program to check a number # for positive, negative or zero num = int(input(‘Enter a number:… Read More »

Loading