Print double quotes in a string in Python

By Asma Khan

As programmers, we have all struggled with strings at some point. It may be when we loop through its characters, concatenate them with other data types, or even when we just need t.... Read More

Set delay in drawing in Python Turtle

By Asma Khan

In this tutorial, we will learn how to set a delay in drawing in Python Turtle. Python becomes even more interesting when it comes to exploring graphics. This is because Python has.... Read More

Change SwiftUI Button Size

By Samim

In this tutorial, we will see how to easily change the size of buttons in our SwiftUI app. Buttons are an essential part of any user interface, and SwiftUI provides a simple and ea.... Read More

Remove Empty Rows from Excel file in Python using pandas

By Shalini Gupta

Hello friends, we have got several empty rows in datasets. To remove all of them is a tedious process. You can do that easily using the pandas library. In this tutorial, I will tel.... Read More

Google Maps Integration in SwiftUI

By shagrafnasheet

In this SwiftUI tutorial, we’ll be learning to integrate Google Maps into SwiftUI step by step. We’ll be using a static location for showing on the map. Key Steps: Crea.... Read More

Find Empty Cells in Excel using Python

By Shalini Gupta

Hello friends, often you have seen empty cells in your Excel file. This results in erroneous conclusions. You can easily find these cells instead of doing it manually, which is tim.... Read More

Complex Password Validation in SwiftUI

By Saruque Ahamed Mollick

Hello, I have built a complex password validation in SwiftUI. This is just for learning and practicing but I thought it worth sharing here as you can modify this according to your .... Read More

Fetch Header information from URL using Python

By Shalini Gupta

To work on URLs in Python, the urllib package is preferred. Today I will tell you how to fetch header information from a URL using Python. However, it also includes a brief overvie.... Read More

Related Posts