
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Vikram Chiluka has Published 249 Articles

Vikram Chiluka
11K+ Views
In this article, we will show you how to convert bytes into a string in Python. Strings are sequences of characters, while bytes are 8-bit values. To convert a sequence of characters to 8-bit values, we can utilize Python's built-in methods, which we will explore in this article. ... Read More

Vikram Chiluka
8K+ Views
Performing arithmetic operations on dates allows us to calculate differences between dates, add or subtract time intervals, or compare one date with another using the datetime module in Python. This article will discuss how to perform several arithmetic operations using the datetime module in Python. Adding and Subtracting Days Using ... Read More

Vikram Chiluka
3K+ Views
In Python, measuring the execution time of a function or block of code can be done using several functions and methods provided by built-in modules like time and datetime. The following are the methods to measure the execution time of Python functions. Using time.time() Method ... Read More

Vikram Chiluka
43K+ Views
The Python tuple elements are enclosed inside the parentheses, while dictionary elements are present in the form of a key-value pair and are enclosed between curly brackets. In this article, we will show you how to convert a Python tuple into a dictionary. The following are the methods to convert ... Read More

Vikram Chiluka
1K+ Views
Python provides a variety of data structure collections such as lists, tuples, sets, and dictionaries. However, these tuples are very similar to lists. Because lists are a commonly used data structure, developers frequently mistake how tuples differ from lists. Python tuples, like lists, are a collection of items of any ... Read More

Vikram Chiluka
680 Views
Python includes a built-in package i.e random module for generating random numbers. In this article, we will show you how to generate random numbers in python using different methods - Using random.seed() Method ... Read More

Vikram Chiluka
57K+ Views
In Python, a list is an ordered sequence that can hold several object types, such as integers, characters, or floats. In this article, we will show you how to check if the given input list is empty or NOT using Python. Below are the 5 methods to accomplish this task ... Read More

Vikram Chiluka
10K+ Views
In this article, we will show you how to convert a Python tuple to a C array. Python does not have a built-in array data type like other programming languages, but you can create an array using a library like Numpy. Tuple to Array Conversion Using Python The Python NumPy ... Read More

Vikram Chiluka
632 Views
The two most popular programming languages are Java and Python. Both are high-level, general-purpose programming languages that are widely used. Developers currently utilize the Java programming language to create web and desktop apps. Python is utilized in the development of machine learning applications and data science. Choosing between the two ... Read More

Vikram Chiluka
2K+ Views
In Python, a list is an ordered sequence that can hold several object types such as integer, character, or float. In other programming languages, a list is equivalent to an array. Square brackets are used to denote it, and a comma (, ) is used to divide two items in ... Read More