Featured Post

Claude Code for Beginners: Step-by-Step AI Coding Tutorial

Image
 Artificial Intelligence is changing how developers write software. From generating code to fixing bugs and explaining complex logic, AI tools are becoming everyday companions for programmers. One such powerful tool is Claude Code , powered by Anthropic’s Claude AI model. If you’re a beginner or  an experienced developer looking to improve productivity, this guide will help you understand  what Claude Code is, how it works, and how to use it step-by-step . Let’s get started. What is Claude Code? Claude Code is an AI-powered coding assistant built on top of Anthropic’s Claude models. It helps developers by: Writing code from natural language prompts Explaining existing code Debugging errors Refactoring code for better readability Generating tests and documentation In simple words, you describe what you want in plain English, and Claude Code helps turn that into working code. It supports multiple programming languages, such as: Python JavaScri...

Sets Vs Lists Python Programmer Tips

Sets Vs Lists Python Programmer Tips


Sets are only useful when trying to ensure unique items are preserved. Before sets were available, it was common to process items and check if they exist in a list (or dictionary) before adding them.

List example


Here unique is an empty list. Every time I compare with this list, and if it is not duplicated then the input item will append to the unique list. 

>>> unique = [] 
>>> for name in ['srini', 'srini', 'rao', 'srini']:
 ... if name not in unique: 
... unique.append(name) 
... >>> unique ['srini', 'rao']


There is no need to do this when using sets. Instead of appending you add to a set:

Set example


>>> for name in ['srini', 'srini', 'rao', 'srini']:
... unique.add(name) 
... 
>>> unique {'srini', 'rao'}


Just like tuples and lists, interacting with sets have some differences on how to access their items. You can't index them like lists and tuples, but you can iterate over them without issues. 


The only reason I use sets is to ensure there aren't any duplicates. If that is not needed, a list is preferable.


Related Posts

Comments

Popular posts from this blog

SQL Query: 3 Methods for Calculating Cumulative SUM

Step-by-Step Guide to Reading Different Files in Python

5 SQL Queries That Popularly Used in Data Analysis