Answers for "python create dict list comprehension"

1

types of dict comprehension

# Dictionary Comprehension Types

{j:j*2 for i in range(10)}

#using if 
{j:j*2 for j in range(10) if j%2==0}

#using if and 
{j:j*2 for j in range(10) if j%2==0 and j%3==0}

#using if else
{j:(j*2 if j%2==0 and j%3==0 else 'invalid' )for j in range(10) }
Posted by: Guest on August-12-2020

Code answers related to "python create dict list comprehension"

Python Answers by Framework

Browse Popular Code Answers by Language