Arnav Singhpythonfornoobs.hashnode.dev·Nov 12, 2024Comprehensive Guide to Python Data Structures: Lists and TuplesKey Takeaways ConceptSummary ListsMutable, ordered collections that can store different types of data. Creating ListsLists can be created using square brackets []. TuplesImmutable, ordered collections that store different types of data. Cre...11 likesPython for NoobsPython
Shrey Dikshantshreysblog.hashnode.dev·Oct 4, 2024Advanced String Slicing Techniques 🛠️Introduction Now that we understand the basics of slicing, let’s explore more advanced techniques. We’ll learn how to deal with nested slicing, dynamic slicing, and some interesting slicing tricks. Dynamic Slicing Based on Length 📏 You can dynamical...Mastering Python Strings: From Basics to Advanced SlicingPython, data types, lists, tuples, dictionaries, sets, booleans, type conversion, namedtuples, data classes, arrays, mutable, immutable, coding best practices, Pythonic coding, advanced Python structures
Shrey Dikshantshreysblog.hashnode.dev·Sep 29, 2024String Slicing in Python ✂️Introduction String slicing is a technique used to extract specific portions of a string. By using slicing, you can retrieve substrings, reverse strings, or even skip characters. In this blog, we’ll explore how to slice strings efficiently. Understan...Mastering Python Strings: From Basics to Advanced SlicingStrings
Karan grewalkarangrewal.hashnode.dev·Jul 12, 2024Python List Slicing Explained for BeginnersWhat is slicing As we know that in Lists we use [] to return an item at that particular index list = ["python","java","javascript"] print(list[0]) #It prints the returned item of the index in the list But if you want return list of items of a partic...1 likePython
Nirmal Pandeybitsnotion.com·Feb 27, 2023String Data Types In DetailsIn Python, a string is a sequence of characters that can be manipulated using various functions and methods. Some of the main ways to manipulate strings: Slicing: Extracting a substring from a larger string by specifying a range of indices. Basic syn...1 likePython TutorialsPython