Let’s check how to convert Numpy array to Python list.
Python
Python related articles. Mostly how to do certain thing with Python but not only
How to convert char to string in Python
Let’s see how to convert char to string in Python. Asume given char list is : Char : [‘m’, ‘y’, ‘c’, ‘h’, ‘a’, ‘r’] And we would like to convert it to: String : mychar There are a few ways to do that:
How to draw pyramid?
Let’s embark on an exciting journey to learn how to draw various pyramids using Python.
How to convert cm to inch?
Let’s see how to handle unit conversion in Python. I’m taking cm to inch conversion as an example.
Frequency and percentage of given letter in the text
You will learn how to calculate the frequency and percentage of a given letter in a text using Python.
Calculate age from date of birth in Python
I’ll show you how to calculate your age in years, months, and days using Python. The script will ask for the day, month, and year of your birth, and it will output your exact age. With a few simple adjustments, this script can also be used for other datetime calculations.