Posts by Khushi Aswani

Author Biographical Info: Python programmer who is also interested in content writing.

Concatenate array of strings into a single array in Swift

By Khushi Aswani

This tutorial is based on the topic to concatenate arrays of strings into a single array. We can do this task very easily by joining the two given arrays of strings. This is gonna .... Read More

Convert array to comma separated string in Swift

By Khushi Aswani

This tutorial is based on the task to convert a given array into a comma separate string in Swift. For this, we need an array of a few elements which need to be converted into comm.... Read More

Add border to range of cells in openpyxl Python

By Khushi Aswani

This tutorial is based on the task to add borders to a range of cells in openpyxl in Python. For this first of all, you need to make sure you have openpyxl installed on your system.... Read More

Replace an array element with another element in Swift

By Khushi Aswani

In this tutorial, we will learn how to replace an array element with another. For this we need to: Find the index of the element you want to replace. Replace the element at this in.... Read More

Get the difference between two dates in Swift

By Khushi Aswani

You might have understood the topic for today’s tutorial, “Getting the difference between two specific dates in Swift”. As a programmer, you might need to do this.... Read More

Remove element from an array by value in Swift

By Khushi Aswani

This tutorial is all about removing elements from an array by value in Swift. In this tutorial, we will first create an array of integer type which will contain certain elements th.... Read More

How to set upload file size limit in Django

By Khushi Aswani

This tutorial is based on limiting the uploading file size or restricting a limit to which we can store a large amount of data with less storage data. You might want to have a limi.... Read More

How to Lookup Dictionary Value with Key in Django Template

By Khushi Aswani

This tutorial is all about looking into a dictionary value using a key in Django Template. This task will be accomplished by creating a dictionary in the views.py file and then ren.... Read More

Related Posts