Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the wordpress-seo domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /var/www/vinascript/html/wp-includes/functions.php on line 6114
Merge 2 kiểu dữ liệu Dict trong Python - VinaScript

Latest Post

Triển khai dự án PHP, Mysql với Nginx trên Docker Tìm hiểu về HTML – Ưu điểm, nhược điểm và cách hoạt động của HTML

Kiểu dữ liệu sử dụng phổ biến trong Python là Dictionary (Viết tắt là Dict). Để merge 2 biến kiểu Dict vào nhau chúng ta có những cách sau đây:

VD: Chúng ta merge 2 biến Dictionary là x và y

Từ Python 3.9 cho tới mới nhất

Merge x và y thành z

z = x | y

Merge y vào x ( phép toán ior)

x |= y

Từ Python 3.5 cho tới mới nhất

z = {**x, **y}

Ở Python 2 hoặc Python 3.4 tới cũ hơn

Chúng ta cần viết 1 function như sau:

def merge_two_dicts(x, y):
    z = x.copy()   # start with keys and values of x
    z.update(y)    # modifies z with keys and values of y
    return z

Và để merge chúng ta gọi

z = merge_two_dicts(x, y)

Để lại một bình luận

Email của bạn sẽ không được hiển thị công khai. Các trường bắt buộc được đánh dấu *