The following are the functions which can be defined to emulate numeric type objects. Methods to implement Binary operations on same type of objects :… Read More
Tag Archives: Python-Miscellaneous
In this article, we will know about Javascript & Python, the purpose of their usage, along with knowing the difference between them. Python: Python is a… Read More
For loop take much time for completing iterations and in ML practise we have to optimize the time so we can use for loops. But… Read More
It’s not hidden that Java is a powerful and Python is a simple and easy language. To get them both together, Jython was introduced so… Read More
EAFP is a piece of gem advice in the Python community which may not be familiar to programmers of other communities. Quickly, EAFP or ‘Easier… Read More
“If you want your code to run faster, you should probably just use PyPy.” — Guido van Rossum (creator of Python) If you have ever coded in… Read More
UwU is used as an emoticon to demonstrate a reaction to something cute. In this emoticon, the ‘U’s signify 2 closed eyes and the ‘w’… Read More
RSA algorithm is an asymmetric cryptography algorithm. Asymmetric actually means that it works on two different keys i.e. Public Key and Private Key. As the… Read More
The process of inheritance involves the transmission of characteristics from one generation to another in the form of genes. These genes actually have DNA which… Read More
With the help of zlib.compress(s) method, we can get compress the bytes of string by using zlib.compress(s) method. Syntax : zlib.compress(string) Return : Return compressed… Read More
With the help of zlib.decompress(s) method, we can decompress the compressed bytes of string into original string by using zlib.decompress(s) method. Syntax : zlib.decompress(string) Return… Read More
Doomsday may refer to a hypothetical event according to which the end of human life is at the highest possibility. There are many algorithms written… Read More
Data ingestion is the process of obtaining and importing the data for the storage in the database. In this article, we explore different data ingestion… Read More
Document similarity, as the name suggests determines how similar are the two given documents. By “documents”, we mean a collection of strings. For example, an… Read More
Django and Flask are two of the most popular web framework for Python. Flask showed up as an alternative to Django, as designers needed to… Read More