Reading Time: 1 minutesPassword Validator in Python: Build a validatePassword() function which accepts a password as string and reports if it is a good password or not based on the following constraints: Password […]
Month: January 2017
PyPro #28 Generating a Random Password
Reading Time: 1 minutesGenerating a Random Password in Python: Write a Python program which generates a random password. The password may consist of alphabets, numbers & special symbols. Its length should be between […]
PyPro #27 Tuple of Odd Numbers
Reading Time: 1 minutesTuple of Odd Numbers in Python: A Python program which accepts end bounds of a range from the user, and outputs a tuple containing only odd numbers lying in the […]
PyPro #26 Sorted Sequence With No Duplicates
Reading Time: 1 minutesSorted Sequence With No Duplicates in Python: A Python script which prompts the user for a sequence of space-separated words, and outputs the sorted sequence with no duplicates. For example, […]
PyPro #25 Unique Characters in a string using a dictionary
Reading Time: 1 minutesUnique Characters in a string using a dictionary in Python: Write a Python program which asks the user for a string, and outputs number of unique characters in it. For […]
PyPro #24 Positives, Negatives & Zeroes using lists
Reading Time: 1 minutesPositives, Negatives & Zeroes using lists in Python: Write a Python script which prompts the user for a sequence of integer values, and once he is finished, displays the list […]
PyPro #23 Conversion Table: Celsius to Fahrenheit Temperatures
Reading Time: 1 minutesConversion Table: Celsius to Fahrenheit Temperatures in Python - Write a Python script to output a conversion table for Celsius to Fahrenheit temperatures. Ask the user to input lower bound […]
PyPro #22 Vowels & Consonants
Reading Time: 1 minutesVowels & Consonants in Python: A simple Python program to determine whether the entered letter is a vowel or a consonant. Vowels & Consonants in Python Try it here. See […]
PyPro # 21 Temperature Conversion: Celsius to Fahrenheit
Reading Time: 1 minutesTemperature Conversion: Celsius to Fahrenheit in Python - A simple Python program to convert Celsius temperature to Fahrenheit temperature. Temperature Conversion: Celsius to Fahrenheit in Python Try it here. See […]
PyPro #20 Calculate your Body Mass Index (BMI)
Reading Time: 1 minutesCalculate your Body Mass Index (BMI) in Python: Python script to calculate your Body Mass Index (BMI). Calculate your Body Mass Index (BMI) in Python Try it here. See also: […]