meta data for this page
  •  

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
programming:python:syntax:collections:dict [2024/12/06 20:08] – created niziakprogramming:python:syntax:collections:dict [2025/01/02 10:51] (current) niziak
Line 1: Line 1:
-====== dict ======+====== Dictionary ====== 
 + 
 +===== merge dictionaries ===== 
 + 
 +[[https://docs.python.org/3.9/whatsnew/3.9.html#dictionary-merge-update-operators|Dictionary Merge & Update Operators]] 
 +<code python> 
 +c = a | b 
 +a |= b 
 +</code>
  
 ===== comprehension ===== ===== comprehension =====