Count number of items in a dictionary value that is a list in Python

Pradeep Elance
Updated on 15-Mar-2026 18:00:40

1K+ Views

Sometimes we have a dictionary where some values are lists and we need to count the total number of items across all these list values. Python provides several approaches to achieve this using isinstance() to check if a value is a list. Using isinstance() with Dictionary Keys We can iterate through dictionary keys and use isinstance() to identify list values ? # defining the dictionary data_dict = {'Days': ["Mon", "Tue", "Wed", "Thu"], 'time': "2 pm", 'Subjects':["Phy", "Chem", "Maths", "Bio"] } print("Given dictionary:", data_dict) ... Read More

HTML Docs Not Updating from CSS

Eesha Gandhi
Updated on 15-Mar-2026 18:00:28

635 Views

When working with HTML and CSS, a common issue is when CSS styling doesn't reflect in your HTML document despite being properly linked. This problem is particularly frequent in Django web applications where static files need special handling. Common Causes and Solutions Issue 1: Incorrect MIME Type The most common mistake is using an incorrect type attribute in the link tag − ... Read More

Converting list string to dictionary in Python

Pradeep Elance
Updated on 15-Mar-2026 18:00:21

1K+ Views

Sometimes you need to convert a string that looks like a list with key-value pairs into an actual Python dictionary. For example, converting '[Mon:3, Tue:5, Fri:11]' into {'Mon': '3', 'Tue': '5', 'Fri': '11'}. Python provides several approaches to handle this conversion. Using split() and Dictionary Comprehension This approach uses split() to separate elements and slicing to remove the brackets, then creates a dictionary using comprehension ? string_data = '[Mon:3, Tue:5, Fri:11]' # Given string print("Given string:", string_data) print("Type:", type(string_data)) # Using split and slicing result = {sub.split(":")[0]: sub.split(":")[1] for sub in string_data[1:-1].split(", ")} ... Read More

How to Create StopWatch using HTML CSS and JavaScript ?

Eesha Gandhi
Updated on 15-Mar-2026 18:00:06

6K+ Views

To create a stopwatch using HTML, CSS, and JavaScript, we need a basic understanding of these three technologies. HTML creates the structure, CSS styles the interface, and JavaScript adds the functionality for timing operations. In this tutorial, we will create a stopwatch with Start, Stop, and Reset functionality − Creating Structure of Stopwatch using HTML We use a structured approach with div elements to organize our stopwatch components − The outer align div centers the stopwatch on the screen The container div holds all stopwatch elements ... Read More

Converting all strings in list to integers in Python

Pradeep Elance
Updated on 15-Mar-2026 18:00:00

2K+ Views

Sometimes we have a list containing strings that represent numbers. In such cases, we need to convert these string elements into actual integers for mathematical operations or data processing. Using List Comprehension with int() The most Pythonic approach uses list comprehension with the int() function to iterate through each element and convert it ? string_numbers = ['5', '2', '-43', '23'] # Given list print("Given list with strings:") print(string_numbers) # Using list comprehension with int() integers = [int(i) for i in string_numbers] # Result print("The converted list with integers:") print(integers) Given ... Read More

Convert two lists into a dictionary in Python

Pradeep Elance
Updated on 15-Mar-2026 17:59:44

5K+ Views

Python dictionaries store data as key-value pairs, while lists contain a series of values. Converting two lists into a dictionary is a common task where one list provides keys and another provides corresponding values. Python offers several methods to achieve this conversion. Using zip() Function The zip() function is the most pythonic and efficient way to combine two lists into a dictionary. It pairs elements from both lists and creates key-value pairs ? keys = ["Mon", "Tue", "Wed"] values = [3, 6, 5] # Given lists print("Keys:", keys) print("Values:", values) # Convert to dictionary ... Read More

Create a 3D Text Effect using HTML and CSS

Yaswanth Varma
Updated on 15-Mar-2026 17:59:27

3K+ Views

In web design, 3D text effects add depth and visual appeal to content. The text-shadow property is the primary CSS tool for creating these effects by applying multiple shadows with different offsets and colors to simulate depth. Syntax text-shadow: h-offset v-offset blur-radius color; To create a 3D effect, we apply multiple text-shadow values separated by commas, each with different offset positions to build up layers of depth. Example 1: Simple 3D Text with Hover Effect The following example creates a basic 3D text effect that appears on hover − ... Read More

Convert string to DateTime and vice-versa in Python

Pradeep Elance
Updated on 15-Mar-2026 17:59:26

324 Views

Python has extensive date and time manipulation capabilities. In this article, we'll see how a string with proper format can be converted to a datetime object and vice versa. Converting String to DateTime with strptime() The strptime() function from the datetime module can convert a string to datetime by taking appropriate format specifiers ? import datetime dt_str = 'September 19 2019 21:02:23 PM' # Given date time string print("Given date time:", dt_str) print("Data Type:", type(dt_str)) # Define format specifiers dtformat = '%B %d %Y %H:%M:%S %p' # Convert string to datetime datetime_val ... Read More

Convert set into a list in Python

Pradeep Elance
Updated on 15-Mar-2026 17:59:09

438 Views

Converting a set into a list is a common task in Python data analysis. Since sets are unordered collections and lists are ordered, this conversion allows you to access elements by index and maintain a specific order. Using list() Function The most straightforward approach is using the built−in list() function, which directly converts a set into a list ? setA = {'Mon', 'day', '7pm'} # Given Set print("Given set:", setA) # Convert set to list result = list(setA) # Result print("Final list:", result) Given set: {'7pm', 'day', 'Mon'} Final list: ... Read More

Design a Vertical and Horizontal menu using Pure CSS

Yaswanth Varma
Updated on 15-Mar-2026 17:58:59

605 Views

The menu is a crucial component of any website. It helps visitors find content and directs them to key sections. CSS is excellent for creating stunning navigation menus that can be displayed either horizontally or vertically. In this article, we'll design vertical and horizontal menus using Pure CSS framework with HTML and tags. Syntax Pure CSS menu uses the following basic structure − .pure-menu { /* Base menu container */ } .pure-menu-horizontal { /* Horizontal layout modifier */ } .pure-menu-list { ... Read More

Advertisements