Skip to content

ProgrammingBasic

  • JavaScript
  • Quick Fix
  • Python
  • Vue
  • CSS
  • Svelte
  • ReactJs
  • QBasic
ProgrammingBasic

Python

How to Install Pip(pip3) in Ubuntu Linux 22.04
Python

How to Install Pip(pip3) in Ubuntu Linux 22.04

ByIzzaz October 20, 2023October 28, 2023

Pip is a package manager for Python that allows you to install and manage additional Python packages that are not part of the Python standard library. Pip makes it easy to install, upgrade, and remove…

Read More How to Install Pip(pip3) in Ubuntu Linux 22.04Continue

How to Write If-Else Statements in One Line in Python
Python

How to Write If-Else Statements in One Line in Python

ByIzzaz September 22, 2023October 5, 2023

If-else statements are a fundamental concept in Python and other programming languages. They allow you to execute different blocks of code based on whether a condition is true or false. While standard if-else statements span…

Read More How to Write If-Else Statements in One Line in PythonContinue

Convert a string into integer or float using Python
Python

Convert a string into integer or float using Python

ByIzzaz September 14, 2023September 22, 2023

In this short article, we will see how to convert a string value into an integer in python. To convert any string value into an integer we can use the in-built int() function in python….

Read More Convert a string into integer or float using PythonContinue

Split String and get the first element using python
Python

Split String and get the first element using python

ByIzzaz September 14, 2023September 22, 2023

In this post, we will discuss how to get the first element after we split a string into a list in python. In Python, we can use the str.split() method with the maxsplit argument to…

Read More Split String and get the first element using pythonContinue

How to split a list into multiple list using python
Python

How to split a list into multiple list using python

ByIzzaz September 14, 2023September 25, 2023

In this post, we will learn how to split a list into multiple lists of N chunks in Python. A List is one of the in-built data types in Python. It is used to store…

Read More How to split a list into multiple list using pythonContinue

Split string by whitespace in python
Python

Split string by whitespace in python

ByIzzaz September 14, 2023September 22, 2023

In this post, we will learn how to split a string by spaces in python. To split a string by whitespace in python we can use the split() method. It splits a string and returns…

Read More Split string by whitespace in pythonContinue

Replace character in String by index in Python
Python

Replace character in String by index in Python

ByIzzaz September 14, 2023September 22, 2023

In this article, we will see how we can replace a character at a certain index in a string in python with some examples. To replace any character at a specific position we have to…

Read More Replace character in String by index in PythonContinue

Get the Index or Position of Item in List in Python
Python

Get the Index or Position of Item in List in Python

ByIzzaz September 14, 2023October 28, 2023

To find the index of an element from List in python, we can use the index() method and pass the element as an argument. It returns the index of the first occurrence of the element…

Read More Get the Index or Position of Item in List in PythonContinue

Python – Check if a string is Empty or Not
Python

Python – Check if a string is Empty or Not

ByIzzaz September 14, 2023October 28, 2023

In this post, we will see different ways to check if a string is empty or not in Python. In python, strings are immutable, which means we cannot make any changes to them once we…

Read More Python – Check if a string is Empty or NotContinue

Page navigation

1 2 3 … 6 Next PageNext
  • About Us
  • Blogs
  • Categories
  • Contact Us
  • Disclaimer
  • JavaScript
  • Quick Fix
  • Python
  • Vue
  • CSS
  • Svelte
  • ReactJs
  • QBasic