Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

Blog Directory  >  Software Blogs  >  Code Streak software Blog  > 

While Loop In Python
2024-01-08 00:30
 The while loop in Python is used to execute a piece of code infinitely many times till a specific condition is satisfied. When the condition becomes false, the line immediate… Read More
For Loop In Python
2024-01-02 05:13
 In Python, a for loop is used to iterate over a list, tuple, set, dictionary, or string. This basically means that the interpreter will either perform a… Read More
Conditional Statements In Python
2023-12-30 08:13
 In Python, if-else statements are used to execute a piece of code if a condition is true or not. The if keyword is generally used with a comparison… Read More
String Methods In Python: Part-2
2023-12-21 00:30
Welcome to the second part of this series on string methods in Python! Here, I shall be telling you about some other methods. You can read the first part of this series here. Let us now laun… Read More
String Methods In Python: Part-1
2023-12-19 00:30
Hello, readers. I am going to explain some important string methods in Python in this multi-part series. I had given some information about strings in my post on Data Types, along with Conca… Read More
A Recap Of Python
2023-12-17 00:30
 Hello readers! I am posting on this blog after a long time and have decided to continue with Python. Since I have not written for a long time, I am using this post as a recap of all th… Read More
2023-09-21 10:15
In this multi part series, we seek to explain some of the basics of the C++ language, some C++ related terminology, and a few other things here and there.So, here goes...A function is a coll… Read More
2023-07-17 10:15
User input in C++ can be given by using the cin keyword along with the extraction operator ">>". In the following piece of code, we will declare the variable "x" and then let the user… Read More
2023-06-15 10:15
Variables in C++ are to be written in a bracket next to the data type intended for the variable. The main data types are given here. For example; #include using namespace std; int main() {… Read More
2023-05-31 19:45
Data types in C++ are mainly divided into 3 types- Primitive Data Types Derived Data Types Abstract or User Defined Data Types Primitive Data Types Primitive data types are those data t… Read More
2023-05-20 07:45
Comments in C++ are quite easy to understand and are just for your clarity. They are ignored by the compiler and are not executed. C++ comments in one line begin with two slashes '//'. For e… Read More
2023-05-11 19:45
How to print text in C++? There is a simple way of printing text in C++. You can use the 'cout' object along with the insertion operator, '>>'. You need to write all the basic lines of… Read More
2023-05-04 19:45
Parts of C++ Code To understand the C++ the code, we are going to look at some part of a sample code. Let us take the following code- //Sample program #include using namespace std; int (mai… Read More
Intro To C++
2023-04-22 10:15
What is C++? C++ is a popular coding language that was developed in the 1980s as an extension of the C language. This language was updated 4 major times; in 2011, 2014, 2017 and 2020. Why us… Read More
2023-04-13 12:17
Tuples are another one of the 4 in-built data types in Python. They are very similar to lists but have some notable differences. In this post, I am going to tell about the features of Tuples… Read More
Python Lists : Part 2
2023-03-17 07:08
In the previous post, I have covered the basics of Python lists. Here, I am going to give some more information about lists in Python.Changing Items in a ListLike I had written in my previou… Read More
Python Lists : Part - 1
2023-03-09 10:15
What are lists?In Python, lists are used to store multiple items in a single variable. All values in a list are called elements. Lists are created using square brackets or '[]' For example;m… Read More
Numbers In Python
2023-03-05 12:14
 Types of numbers in PythonPython has three built in numeric data types - Integer (int)Floating-point numbers (float)Complex (complex)Out of these, integers and floating-point numb… Read More
Data Types In Python
2023-03-05 12:14
What are Data Types?Data types are the classification or categorisation of knowledge items. It represents the type useful that tells what operations are often performed on specific data. Sin… Read More
Python Operators : Part 2
2023-03-04 10:53
In the previous post, I covered three types of operators in Python. You can find the post here.Here, I am going to explain about the following types of Python operators:Logical Operators Bi… Read More
What Is Python?
2023-03-01 11:08
 One of the Easiest Coding Languages:Python!Python is an interpreted, object-oriented, high-level programming language developed by Guido van Rossum. It was originally released in 1991… Read More
Basics Of Python
2023-03-01 10:47
My previous post was just an introduction to Python. It just gave the general details about it like who created it, its advantages, etc. Now i am going to write about the basics of python. T… Read More
Python Operators : Part 1
2023-02-28 17:08
 What are operators in Python? In Python, operators are symbols or special keywords that represent different operations, such as addition, subtraction, and comparison. Operators are… Read More
Booleans In Python
2023-02-25 17:23
 What are Booleans in Python?Booleans is an in-built data type of Python. It is used to represent two values: True or False. For example, 1 but 1 == 0 is false. You can check… Read More
Basic Program In Python
2023-02-21 06:48
A Simple Program in PythonAs you know the basics of Python now,(to the new viewers , you can visit my previous post here) today, I am going to give a basic program in Python. It is the… Read More
Letters In Binary.
2023-02-21 06:48
 In my previous post, I had covered how to convert binary to decimals and decimals to binary. In this post, I will tell about the binary code for uppercase letters (A, B, C)) and lowerc… Read More
The 0-1 Of Binary Code
2023-02-18 19:22
 What is Binary Code?A Binary Code represents numbers, text, or any other data using a systems of 0s and 1s. It is the only type of code that a computer can understand. When we write a… Read More

Subscribe to Code Streak

Get updates delivered right to your inbox!

Thank you for your subscription

×