Reading Time: 1 minutesCopying a file in Python: You can use either copy() function or copyfile() function of builtin module shutil to create a copy of a file. Copying a file in Python
lakshayarora7
Python: Getting size of a file on disk
Reading Time: 1 minutesGetting size of a file on disk in Python: Using the stat() function of builtin module os, you can retrieve information about a file on disk, including its size in […]
PyPro #31 nth Term of Fibonacci Series
Reading Time: 1 minutesnth Term of Fibonacci Series in Python: Write a Python function which gives nth term of Fibonacci series. Fibonacci series is a sequence of numbers in which each number is […]
PyPro #29 Password Validator
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 […]
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 #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 #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 #19 Unit Conversion: Height in centimetres
Reading Time: 1 minutesUnit Conversion: Height in centimetres in Python - Python code to convert height from feet and inches to centimeters. Unit Conversion: Height in centimetres in Python Try it here. See […]

