Karthikeya Boyini has Published 2383 Articles

Birthday Reminder Application in Python

karthikeya Boyini

karthikeya Boyini

Updated on 30-Jul-2019 22:30:23

636 Views

In this section we will see how to create a birthday reminder application using Python. Problem Statement Create an application using Python, which can check whether there is any birthday on the current day or not. If it is the birthday of some listed person, send a notification to the ... Read More

Erosion and Dilation of images using OpenCV in Python

karthikeya Boyini

karthikeya Boyini

Updated on 30-Jul-2019 22:30:23

625 Views

In this problem, we will see how Python can do some Morphological Operations like Erosion and Dilation using the OpenCV module. The OpenCV library is mainly designed for computer vision. It is open source. Originally it was designed by Intel. This is free to use under open-source BSD license. To ... Read More

Tweet using Python

karthikeya Boyini

karthikeya Boyini

Updated on 30-Jul-2019 22:30:23

130 Views

Before using Tweet in Python, we have to follow some steps. Step1 − at first we must have a tweeter profile and then it has to be added with our mobile number. First go to - Settings -> Add Phone -> Add number -> Confirm -> Save. We have to ... Read More

Namedtuple in Python

karthikeya Boyini

karthikeya Boyini

Updated on 30-Jul-2019 22:30:23

3K+ Views

The NamedTuple is another class, under the collections module. Like the dictionary type objects, it contains keys and that are mapped to some values. In this case we can access the elements using keys and indexes. To use it at first we need to import it the collections standard library ... Read More

OrderedDict in Python

karthikeya Boyini

karthikeya Boyini

Updated on 30-Jul-2019 22:30:23

3K+ Views

The OrderedDict is a subclass of dict object in Python. The only difference between OrderedDict and dict is that, in OrderedDict, it maintains the orders of keys as inserted. In the dict, the ordering may or may not be happen. The OrderedDict is a standard library class, which is located ... Read More

Using CX_Freeze in Python

karthikeya Boyini

karthikeya Boyini

Updated on 30-Jul-2019 22:30:23

879 Views

Sometimes we feel to create something different which is very exciting, and according to human nature, we always love to share it. Python also fulfills those wishes. Using Python, if we want to share our Python program with our friends we can do that, only need to have the same ... Read More

Decimal Functions in Python

karthikeya Boyini

karthikeya Boyini

Updated on 30-Jul-2019 22:30:23

12K+ Views

In Python, there is a module called Decimal, which is used to do some decimal floating point related tasks. This module provides correctly-rounded floating point arithmetic. To use it at first we need to import it the Decimal standard library module. import decimal In this section we will ... Read More

Text Analysis in Python3

karthikeya Boyini

karthikeya Boyini

Updated on 30-Jul-2019 22:30:23

184 Views

In this assignment we work with files. Files are everywhere in this Universe. In computer system files are essential part. Operating system consists a lot of files. Python has two types of files-Text Files and Binary Files. Here we discuss about Text Files Here we focus some of the ... Read More

Instruction type MOV r1, r2 in 8085 Microprocessor

karthikeya Boyini

karthikeya Boyini

Updated on 30-Jul-2019 22:30:23

11K+ Views

In 8085 Instruction set, MOV is a mnemonic, which stands for “MOVe”. In this instruction 8-bit data value in register r2 will be moved to the 8-bit register r1. Note that in 8085 instructions, as the first operand specifies the destination, and the second one the source, so here also ... Read More

SharedArrayBuffer.byteLength Property in JavaScript

karthikeya Boyini

karthikeya Boyini

Updated on 30-Jul-2019 22:30:23

55 Views

The byteLength property of the SharedArrayBuffer returns an unsigned, 32-bit integer that specifies the size/length of a SharedArrayBuffer. Syntax Its Syntax is as follows sharedArrayBuffer.byteLength Example Live Demo JavaScript Example ... Read More

Advertisements