python

python

Python map(lambda) function explanation with example

Learn how to use map in python with an iterable like list or tuple. map takes one function and applies it on each element of the iterable. It returns the modified iterable.

Read
python

How to accept sequence of numbers in python and find out the average

Python program to accept a sequence of numbers. In this post, we will write one python program that takes one sequence of numbers from the user and prints out the average value.

Read
python

python program to do inplace replace of string in a file

Python program to do inplace replacement of strings in a file. Read the file line by line and replace one specific string in the lines of the file.

Read
python

Python program to generate secure random string of length n

Python program to generate secure random string of length n. Learn random.choice and secrets.choice methods and how these methods works.

Read
python

How can we print spaces in python

Learn how to print spaces or blank spaces in python. We will learn two different ways to print spaces in python - by using print() and using a variable.

Read
python

Python program to find all indices of a character in a string

This program will show you how to find all indices of a character in a user provided string. We will take both the string and character from the user and print out all indices of that character.

Read
python

How to remove https from a url in python

Learn how to remove https from a url in python. We are discussing two different ways in this post. By using the replace() method and by using regex or regular expression.

Read
python

How to find the last occurrence of a character in a python string

How to find the last occurrence of a character in a python string. We will learn two different ways to do that by using rfind() and rindex() method.

Read
python

How to replace date and time of a python datetime object

Learn to replace date and time of a python datetime object. This example will show you how to replace year, month, day, hour, minute, second, microsecond and time zone of a datetime object in python.

Read
python

Python tutorial pretty print JSON to console and file

Learn how to pretty print JSON file in Python. Read JSON and pretty print and write JSON data as pretty print to file.

Read