Multiple lists Python

Python: Create multiple lists

Last update on October 08 2020 09:21:20 (UTC/GMT +8 hours)

Python List: Exercise - 41 with Solution

Write a Python program to create multiple lists.

Multiple lists Python

Sample Solution:-

Python Code:

obj = {} for i in range(1, 21): obj[str(i)] = [] print(obj)

Sample Output:

{'1': [], '8': [], '14': [], '5': [], '17': [], '9': [], '2': [], '7': [], '16': [], '19': [], '4': [], '18': [], '13': [], '3': [], '15': [], '11': [], '20': [], '6': [], '12': [], '10': []}

Flowchart:

Multiple lists Python

Visualize Python code execution:

The following tool visualize what the computer is doing step-by-step as it executes the said program:

Python Code Editor:

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: Write a Python program to split a list based on first character of word.
Next: Write a Python program to find missing and additional values in two lists.

What is the difficulty level of this exercise?

Easy Medium Hard

Test your Programming skills with w3resource's quiz.



Python: Tips of the Day

Anagram Checker:

A simple way to approach this is to use Python's sorted function. If 2 words are anagrams they should be the same when both are sorted eticalphabally.

def anagram_checker(str1, str2): return sorted(str1) == sorted(str2) print(anagram_checker('study', 'dusty')) print(anagram_checker('night', 'thing')) print(anagram_checker('dessert', 'stressed'))

Output:

True True False


  • New Content published on w3resource:
  • Scala Programming Exercises, Practice, Solution
  • Python Itertools exercises
  • Python Numpy exercises
  • Python GeoPy Package exercises
  • Python Pandas exercises
  • Python nltk exercises
  • Python BeautifulSoup exercises
  • Form Template
  • Composer - PHP Package Manager
  • PHPUnit - PHP Testing
  • Laravel - PHP Framework
  • Angular - JavaScript Framework
  • Vue - JavaScript Framework
  • Jest - JavaScript Testing Framework