Showing posts from October, 2021

Write a Python program to create the combinations of 3 digit combo

numbers = [ ] for num in range ( 1000 ) : num = str ( num ) . zfill ( 3 …

Write a Python program to remove and print every third number from a list of numbers until the list becomes empty

Write a Python program to remove and print every third number from a list of nu…

Write a Python program to convert true to 1 and false to 0

Write a Python program to convert true to 1 and false to 0 code:- x = 'tru…

Write a Python program to sum of all counts in a collections

Write a Python program to sum of all counts in a collections example :- 2,4,1,4…

Write a Python program to filter the positive numbers from a list

Write a Python program to filter the positive numbers from a list example 1:- n…

Write a Python program to input a number, if it is not a number generate an error message

Write a Python program to input a number, if it is not a number generate an err…

Write a Python program to remove the first item from a specified list

code:- color = [ "Red" , "Black" , "Green" ,…

Write a Python program to find postive or negative number

Write a Python program to find postive or negative number Positive Numbers: Any…

Write a Python program to get the name of the host on which the routine is running

Write a Python program to get the name of the host on which the routine is runn…

Write a Python program to Swap two variables

Write a Python program to Swap two variables example 1:- # Python program to de…

Write script to print current date and time

Write script to print current date and time #! /bin/bash year = 'date +%…

Write a Python program to Get the ASCII value of a character

Python Program to Find ASCII Value of Character ASCII stands for American Stand…

Write a Python program to Concatenate N strings

Write a Python program to Concatenate N strings example:- company=['apple&#…

Write a Python program to Calculate the sum of the digits in an integer

Python program to Calculate the sum of the digits in an integer Method 1:- num …

Write a Python program to Calculate body mass index

Write a Python program to calculate body mass index. definition:- A BMI Calcula…

Write a Python program Convert all units of time into seconds

Write a Python program Convert all units of time into seconds days = int ( in…

Download Instagram profile picture using python

step 1: install  $ Pip install Instaloader  step 2: follow code code:- import …

Write a Python program to convert the distance (in feet) to inches, yards, and miles

code:- d_ft = int ( input ( "Input distance in feet: " ) ) d_inche…

Write a Python program to convert height (in feet and inches) to centimeters

code: print ( "Input your height: " ) h_ft = int ( input ( "F…

Write a python program to sum of the first n positive integers

code:- num = int ( input ( "Input a number: " ) ) sum_num = ( num…

Write a Python to find local IP addresses using Pythons stdlib

Write a Python to find local IP addresses using Pythons stdlib IP address:- An …

Write a Python program to test whether a passed letter is a vowel or not

Python program to test whether a passed letter is a vowel or not code:- def is…

Write a Python program to concatenate all elements in a list into a string and return it

Concatenate all elements in a list into a string and return it example: 12,10,8…

Write a shell script that will read a file name and check pattern exist and if exist then count total no of words

Write a shell script  that will read a file name and pattern from the command l…

Write a shell script that will read 2 number from command line and display even number between these two

code:- echo " enter two numbers " read a b if ( ( $a % 2 = = …

Write a Script to validate the name of person accepted through keyboard so that it doesn't exceed 10 character of length

Write a Script to validate the name of person accepted through keyboard so tha…

Write a Python program that will accept the base and height of a triangle and compute the area

Write a Python program that will accept the base and height of a triangle and …

Write a Python program to get the least common multiple (LCM)

LCM:- Least Common Multiple(LCM) is a method to find the smallest common multip…

Write a Python program to compute the greatest common divisor (GCD)

Write a Python program to compute the greatest common divisor (GCD) code:- def …

Write a Python program to add two objects if both objects are an integer type

code:- def add_numbers ( a , b ) : if not ( isinstance ( a , int ) a…

Write a Python program to display your details like name, age, address

code:- def personal_details ( ) : name , age = "vikram" , …

Write a Python program to solve (x + y) * (x + y)

Write a Python program to solve (x + y) * (x + y) example:- x=6,y=2 (6 + 2) ^ 2…

Write a Python program to check whether a file exists

Write a Python program to check whether a file exists Python exists() method is…

Load More That is All