Posts by Khushi Aswani
Author Biographical Info: Python programmer who is also interested in content writing.
This tutorial is about removing the special characters in a string where we need to remove all the special characters except for a space in the string. This is a very interesting t.... Read More
This tutorial is all about merging dictionaries in Swift. As the title says merging dictionaries means we need to join or concatenate two dictionaries. Dictionary is a collection o.... Read More
As the title says, resizing images in Python sounds interesting right? We have already been fascinated by the title itself, it will be fun implementing it. We are going to learn ab.... Read More
This tutorial will teach us how to find the largest value from an Array in Swift. This is how we work with the values in an array. Using max() method to find the largest value from.... Read More
We know that there are specific tasks in Swift that require merging two arrays, with unique values, if any element is present more than once. This blog is related to a similar task.... Read More
This tutorial has information related to the initialization of an array with a specific size in Swift. Whenever there is a need to initialize an array of specific size, we can use .... Read More
Sometimes while working on a project, when there is a need to work on lists and their sub-topics, we need to know how to initialize a list of size n. We can do this through two met.... Read More
This tutorial contains information on converting all characters in the string to uppercase in Swift. We will declare a string that will not necessarily be in uppercase but the outp.... Read More