KGKanika Guptaindevelopwithkanika.hashnode.dev·Apr 11, 2022 · 3 min readTECH Women – The Shapers of Modern SocietyIn a lifetime, a woman performs the role of a responsible wife, supportive partner, disciplined organizer, careful administrator, thoughtful director, re-creator, disburser, economist, loving mother, disciplinarian, idealistic teacher, health officer...01A
KGKanika Guptaindevelopwithkanika.hashnode.dev·Dec 12, 2020 · 4 min readTuples in pythonA tuple is very much like a list, except for the fact that its elements are fixed; that is, once a tuple is created, you cannot add new elements, delete elements, replace elements, or reorder the elements in the tuple. Creating a tuple empty tuple ...00
KGKanika Guptaindevelopwithkanika.hashnode.dev·Dec 11, 2020 · 5 min readLists in pythonA list is a data structure in python which stores a sequential collection of elements of any size. Each element or value that is inside of a list is called an item. A list is flexible i.e. does not have a fixed size. A list is mutable i.e. the cont...00
KGKanika Guptaindevelopwithkanika.hashnode.dev·Dec 10, 2020 · 5 min readBuilt-in string functions in pythonPreviously, we discussed about strings and the various operations on strings. Now, we are going to discuss the Built-in or the predefined functions on strings. count function This function is used to count the occurrences of a character or sub-string...00
KGKanika Guptaindevelopwithkanika.hashnode.dev·Dec 9, 2020 · 4 min readStrings in pythonA string is a sequence of characters. A python string maybe enclosed within single quotes ' ' , double quotes " " or triple quotes ''' ''' . Strings enclosed within triple quotes is called as documentation string and may extend over several lines...00