Hướng dẫn check dict empty python - kiểm tra dict rỗng python

Đôi khi, chúng ta cần kiểm tra xem một từ điển cụ thể có trống hay không. Trong miền phát triển web, đôi khi chúng tôi cần kiểm tra kết quả của một truy vấn cụ thể hoặc kiểm tra xem chúng tôi có bất kỳ khóa nào để thêm thông tin vào cơ sở dữ liệu hay không. Hãy để thảo luận về những cách nhất định trong đó nhiệm vụ này có thể được thực hiện trong Python. & NBSP;

Kiểm tra xem từ điển có trống bằng bool ()

Hàm bool có thể được sử dụng để thực hiện nhiệm vụ cụ thể này. Như tên cho thấy nó thực hiện nhiệm vụ chuyển đổi một đối tượng thành giá trị boolean, nhưng ở đây, việc chuyển một chuỗi trống trở lại sai, vì không chuyển đổi thứ gì đó trống. & NBSP;

Python3

The original dictionary : {}
Is dictionary empty ? : True
9
The original dictionary : {}
Is dictionary empty ? : True
0
The original dictionary : {}
Is dictionary empty ? : True
1

The original dictionary : {}
Is dictionary empty ? : True
2
The original dictionary : {}
Is dictionary empty ? : True
3
The original dictionary : {}
Is dictionary empty ? : True
4
The original dictionary : {}
Is dictionary empty ? : True
5
The original dictionary : {}
Is dictionary empty ? : True
6
The original dictionary : {}
Is dictionary empty ? : True
7

The original dictionary : {}
Is dictionary empty ? : True
8
The original dictionary : {}
Is dictionary empty ? : True
0
The original dictionary : {1: 'Hello', 2: 'World'}
Is dictionary empty ? : False
0
The original dictionary : {1: 'Hello', 2: 'World'}
Is dictionary empty ? : False
1
The original dictionary : {1: 'Hello', 2: 'World'}
Is dictionary empty ? : False
2

The original dictionary : {}
Is dictionary empty ? : True
2
The original dictionary : {}
Is dictionary empty ? : True
3
The original dictionary : {1: 'Hello', 2: 'World'}
Is dictionary empty ? : False
5
The original dictionary : {}
Is dictionary empty ? : True
5
The original dictionary : {}
Is dictionary empty ? : True
6
The original dictionary : {1: 'Hello', 2: 'World'}
Is dictionary empty ? : False
8

Đầu ra:

The original dictionary : {}
Is dictionary empty ? : True

Kiểm tra xem từ điển có trống bằng cách sử dụng không vận hành & nbsp không; 

Nhiệm vụ này cũng có thể được thực hiện bằng cách sử dụng toán tử không kiểm tra sự tồn tại từ điển, điều này đánh giá là đúng nếu không tìm thấy khóa trong từ điển. & NBSP;

Python3

The original dictionary : {}
Is dictionary empty ? : True
9
The original dictionary : {}
Is dictionary empty ? : True
0
The original dictionary : {}
Is dictionary empty ? : True
1

The original dictionary : {}
Is dictionary empty ? : True
2
The original dictionary : {}
Is dictionary empty ? : True
3
The original dictionary : {}
Is dictionary empty ? : True
4
The original dictionary : {}
Is dictionary empty ? : True
5
The original dictionary : {}
Is dictionary empty ? : True
6
The original dictionary : {}
Is dictionary empty ? : True
7

The original dictionary : {}
Is dictionary empty ? : True
8
The original dictionary : {}
Is dictionary empty ? : True
0
The original dictionary : {1: 'Hello', 2: 'World'}
Is dictionary empty ? : False
0
The original dictionary : {1: 'Hello', 2: 'World'}
Is dictionary empty ? : False
1
The original dictionary : {1: 'Hello', 2: 'World'}
Is dictionary empty ? : False
2

The original dictionary : {}
Is dictionary empty ? : True
2
The original dictionary : {}
Is dictionary empty ? : True
3
The original dictionary : {1: 'Hello', 2: 'World'}
Is dictionary empty ? : False
5
The original dictionary : {}
Is dictionary empty ? : True
5
The original dictionary : {}
Is dictionary empty ? : True
6
The original dictionary : {1: 'Hello', 2: 'World'}
Is dictionary empty ? : False
8

Output:

The original dictionary : {}
Is dictionary empty ? : True

Đầu ra: len()

Kiểm tra xem từ điển có trống bằng cách sử dụng không vận hành & nbsp không;

Python3

The original dictionary : {}
Is dictionary empty ? : True
9
The original dictionary : {}
Is dictionary empty ? : True
0
The original dictionary : {}
Is dictionary empty ? : True
1

The original dictionary : {}
Is dictionary empty ? : True
2
The original dictionary : {}
Is dictionary empty ? : True
3
The original dictionary : {}
Is dictionary empty ? : True
4
The original dictionary : {}
Is dictionary empty ? : True
5
The original dictionary : {}
Is dictionary empty ? : True
6
The original dictionary : {}
Is dictionary empty ? : True
7

The original dictionary : {}
Is dictionary empty ? : True
8
The original dictionary : {}
Is dictionary empty ? : True
0
The original dictionary : {1: 'Hello', 2: 'World'}
Is dictionary empty ? : False
0
The original dictionary : {1: 'Hello', 2: 'World'}
Is dictionary empty ? : False
1
The original dictionary : {1: 'Hello', 2: 'World'}
Is dictionary empty ? : False
2

The original dictionary : {}
Is dictionary empty ? : True
2
The original dictionary : {}
Is dictionary empty ? : True
3
The original dictionary : {1: 'Hello', 2: 'World'}
Is dictionary empty ? : False
5
The original dictionary : {}
Is dictionary empty ? : True
5
The original dictionary : {}
Is dictionary empty ? : True
6
The original dictionary : {1: 'Hello', 2: 'World'}
Is dictionary empty ? : False
8

Output:

The original dictionary : {}
Is dictionary empty ? : True

Đầu ra: the Equality Operator

Kiểm tra xem từ điển có trống bằng cách sử dụng không vận hành & nbsp không;

Python3

Nhiệm vụ này cũng có thể được thực hiện bằng cách sử dụng toán tử không kiểm tra sự tồn tại từ điển, điều này đánh giá là đúng nếu không tìm thấy khóa trong từ điển. & NBSP;

The original dictionary : {}
Is dictionary empty ? : True
9
The original dictionary : {}
Is dictionary empty ? : True
0
The original dictionary : {}
Is dictionary empty ? : True
1

The original dictionary : {}
Is dictionary empty ? : True
2
The original dictionary : {}
Is dictionary empty ? : True
3
The original dictionary : {}
Is dictionary empty ? : True
4
The original dictionary : {}
Is dictionary empty ? : True
5
The original dictionary : {}
Is dictionary empty ? : True
6
The original dictionary : {}
Is dictionary empty ? : True
7

The original dictionary : {}
Is dictionary empty ? : True
8
The original dictionary : {}
Is dictionary empty ? : True
0
The original dictionary : {1: 'Hello', 2: 'World'}
Is dictionary empty ? : False
0
The original dictionary : {1: 'Hello', 2: 'World'}
Is dictionary empty ? : False
1
The original dictionary : {1: 'Hello', 2: 'World'}
Is dictionary empty ? : False
2

The original dictionary : {}
Is dictionary empty ? : True
2
The original dictionary : {}
Is dictionary empty ? : True
3
The original dictionary : {1: 'Hello', 2: 'World'}
Is dictionary empty ? : False
5
The original dictionary : {}
Is dictionary empty ? : True
5
The original dictionary : {}
Is dictionary empty ? : True
6
The original dictionary : {1: 'Hello', 2: 'World'}
Is dictionary empty ? : False
8

Đầu ra:

The original dictionary : {1: 'Hello', 2: 'World'}
Is dictionary empty ? : False


Đôi khi, chúng ta cần kiểm tra xem một từ điển cụ thể có trống hay không. Trong miền phát triển web, đôi khi chúng tôi cần kiểm tra kết quả của một truy vấn cụ thể hoặc kiểm tra xem chúng tôi có bất kỳ khóa nào để thêm thông tin vào cơ sở dữ liệu hay không. Hãy để thảo luận về những cách nhất định trong đó nhiệm vụ này có thể được thực hiện trong Python. & NBSP;

Nội phân Chính showShow

  • Kiểm tra xem từ điển có trống bằng bool ()
  • Kiểm tra xem từ điển có trống bằng cách sử dụng không vận hành & nbsp không;
  • Kiểm tra xem từ điển có trống bằng Len () không
  • Kiểm tra xem từ điển có trống bằng toán tử bình đẳng không

Kiểm tra xem từ điển có trống bằng bool ()

Kiểm tra xem từ điển có trống bằng cách sử dụng không vận hành & nbsp không;

Python3

Kiểm tra xem từ điển có trống bằng Len () không

Kiểm tra xem từ điển có trống bằng toán tử bình đẳng không

Hàm bool có thể được sử dụng để thực hiện nhiệm vụ cụ thể này. Như tên cho thấy nó thực hiện nhiệm vụ chuyển đổi một đối tượng thành giá trị boolean, nhưng ở đây, việc chuyển một chuỗi trống trở lại sai, vì không chuyển đổi thứ gì đó trống. & NBSP;

The original dictionary : {}
Is dictionary empty ? : True
9
The original dictionary : {}
Is dictionary empty ? : True
0
The original dictionary : {}
Is dictionary empty ? : True
1

The original dictionary : {}
Is dictionary empty ? : True
2
The original dictionary : {}
Is dictionary empty ? : True
3
The original dictionary : {}
Is dictionary empty ? : True
4
The original dictionary : {}
Is dictionary empty ? : True
5
The original dictionary : {}
Is dictionary empty ? : True
6
The original dictionary : {}
Is dictionary empty ? : True
7

The original dictionary : {}
Is dictionary empty ? : True
8
The original dictionary : {}
Is dictionary empty ? : True
0
The original dictionary : {1: 'Hello', 2: 'World'}
Is dictionary empty ? : False
0
The original dictionary : {1: 'Hello', 2: 'World'}
Is dictionary empty ? : False
1
The original dictionary : {1: 'Hello', 2: 'World'}
Is dictionary empty ? : False
2

Kiểm tra xem từ điển có trống bằng cách sử dụng không vận hành & nbsp không;

Kiểm tra xem từ điển có trống bằng Len () không

Python3

Kiểm tra xem từ điển có trống bằng Len () không

Kiểm tra xem từ điển có trống bằng toán tử bình đẳng không

Hàm bool có thể được sử dụng để thực hiện nhiệm vụ cụ thể này. Như tên cho thấy nó thực hiện nhiệm vụ chuyển đổi một đối tượng thành giá trị boolean, nhưng ở đây, việc chuyển một chuỗi trống trở lại sai, vì không chuyển đổi thứ gì đó trống. & NBSP;

The original dictionary : {}
Is dictionary empty ? : True
9
The original dictionary : {}
Is dictionary empty ? : True
0
The original dictionary : {}
Is dictionary empty ? : True
1

Output:

The original dictionary : {}
Is dictionary empty ? : True

Kiểm tra xem từ điển có trống bằng Len () không

Kiểm tra xem từ điển có trống bằng toán tử bình đẳng không

Python3

Kiểm tra xem từ điển có trống bằng Len () không

Kiểm tra xem từ điển có trống bằng toán tử bình đẳng không

Hàm bool có thể được sử dụng để thực hiện nhiệm vụ cụ thể này. Như tên cho thấy nó thực hiện nhiệm vụ chuyển đổi một đối tượng thành giá trị boolean, nhưng ở đây, việc chuyển một chuỗi trống trở lại sai, vì không chuyển đổi thứ gì đó trống. & NBSP;

The original dictionary : {}
Is dictionary empty ? : True
9
The original dictionary : {}
Is dictionary empty ? : True
0
The original dictionary : {}
Is dictionary empty ? : True
1

Output:

The original dictionary : {}
Is dictionary empty ? : True

Kiểm tra xem từ điển có trống bằng toán tử bình đẳng không

Hàm bool có thể được sử dụng để thực hiện nhiệm vụ cụ thể này. Như tên cho thấy nó thực hiện nhiệm vụ chuyển đổi một đối tượng thành giá trị boolean, nhưng ở đây, việc chuyển một chuỗi trống trở lại sai, vì không chuyển đổi thứ gì đó trống. & NBSP;

Python3

The original dictionary : {}
Is dictionary empty ? : True
9
The original dictionary : {}
Is dictionary empty ? : True
0
The original dictionary : {}
Is dictionary empty ? : True
1

Kiểm tra xem từ điển có trống bằng Len () không

Kiểm tra xem từ điển có trống bằng toán tử bình đẳng không

Hàm bool có thể được sử dụng để thực hiện nhiệm vụ cụ thể này. Như tên cho thấy nó thực hiện nhiệm vụ chuyển đổi một đối tượng thành giá trị boolean, nhưng ở đây, việc chuyển một chuỗi trống trở lại sai, vì không chuyển đổi thứ gì đó trống. & NBSP;

The original dictionary : {}
Is dictionary empty ? : True
9
The original dictionary : {}
Is dictionary empty ? : True
0
The original dictionary : {}
Is dictionary empty ? : True
1

Output:

The original dictionary : {}
Is dictionary empty ? : False

The original dictionary : {}
Is dictionary empty ? : True
2
The original dictionary : {}
Is dictionary empty ? : True
3
The original dictionary : {}
Is dictionary empty ? : True
4
The original dictionary : {}
Is dictionary empty ? : True
5
The original dictionary : {}
Is dictionary empty ? : True
6
The original dictionary : {}
Is dictionary empty ? : True
7ONLINE without anything except of display the message. Any ideas why ?

def isEmpty(self, dictionary):
    for element in dictionary:
        if element:
            return True
        return False

def onMessage(self, socket, message):
    if self.isEmpty(self.users) == False:
        socket.send("Nobody is online, please use REGISTER command" \
                 " in order to register into the server")
    else:
        socket.send("ONLINE " + ' ' .join(self.users.keys()))    

The original dictionary : {}
Is dictionary empty ? : True
8
The original dictionary : {}
Is dictionary empty ? : True
0
The original dictionary : {1: 'Hello', 2: 'World'}
Is dictionary empty ? : False
0
The original dictionary : {1: 'Hello', 2: 'World'}
Is dictionary empty ? : False
1
The original dictionary : {1: 'Hello', 2: 'World'}
Is dictionary empty ? : False
2Apr 20, 2014 at 1:29

6

The original dictionary : {}
Is dictionary empty ? : True
2
The original dictionary : {}
Is dictionary empty ? : True
3
The original dictionary : {1: 'Hello', 2: 'World'}
Is dictionary empty ? : False
5
The original dictionary : {}
Is dictionary empty ? : True
5
The original dictionary : {}
Is dictionary empty ? : True
6
The original dictionary : {1: 'Hello', 2: 'World'}
Is dictionary empty ? : False
8

>>> dct = {}
>>> bool(dct)
False
>>> not dct
True
>>>

Đầu ra:

The original dictionary : {}
Is dictionary empty ? : True
0

The original dictionary : {}
Is dictionary empty ? : True
Apr 20, 2014 at 1:31

6

Nhiệm vụ này cũng có thể được thực hiện bằng cách sử dụng toán tử không kiểm tra sự tồn tại từ điển, điều này đánh giá là đúng nếu không tìm thấy khóa trong từ điển. & NBSP;

The original dictionary : {}
Is dictionary empty ? : True
1

The original dictionary : {}
Is dictionary empty ? : True
8
The original dictionary : {}
Is dictionary empty ? : True
0
The original dictionary : {1: 'Hello', 2: 'World'}
Is dictionary empty ? : False
0
The original dictionary : {}
Is dictionary empty ? : True
1Apr 20, 2014 at 4:29

Ở đây, chúng tôi đang sử dụng python len () để kiểm tra xem từ điển có trống hay không.doubleo

The original dictionary : {}
Is dictionary empty ? : True
8
The original dictionary : {}
Is dictionary empty ? : True
0
The original dictionary : {}
Is dictionary empty ? : True
9
The original dictionary : {}
Is dictionary empty ? : False
0
The original dictionary : {}
Is dictionary empty ? : True
0
The original dictionary : {}
Is dictionary empty ? : True
0
The original dictionary : {}
Is dictionary empty ? : False
34 gold badges15 silver badges19 bronze badges

4

The original dictionary : {}
Is dictionary empty ? : True
2

Ở đây, chúng tôi đang so sánh từ điển với các giá trị với một từ điển trống để kiểm tra xem từ điển có trống hay không.

def isEmpty(self, dictionary):
    for element in dictionary:
        if element:
            return True
        return False

def onMessage(self, socket, message):
    if self.isEmpty(self.users) == False:
        socket.send("Nobody is online, please use REGISTER command" \
                 " in order to register into the server")
    else:
        socket.send("ONLINE " + ' ' .join(self.users.keys()))    
0
The original dictionary : {}
Is dictionary empty ? : True
0
def isEmpty(self, dictionary):
    for element in dictionary:
        if element:
            return True
        return False

def onMessage(self, socket, message):
    if self.isEmpty(self.users) == False:
        socket.send("Nobody is online, please use REGISTER command" \
                 " in order to register into the server")
    else:
        socket.send("ONLINE " + ' ' .join(self.users.keys()))    
2
def isEmpty(self, dictionary):
    for element in dictionary:
        if element:
            return True
        return False

def onMessage(self, socket, message):
    if self.isEmpty(self.users) == False:
        socket.send("Nobody is online, please use REGISTER command" \
                 " in order to register into the server")
    else:
        socket.send("ONLINE " + ' ' .join(self.users.keys()))    
3
def isEmpty(self, dictionary):
    for element in dictionary:
        if element:
            return True
        return False

def onMessage(self, socket, message):
    if self.isEmpty(self.users) == False:
        socket.send("Nobody is online, please use REGISTER command" \
                 " in order to register into the server")
    else:
        socket.send("ONLINE " + ' ' .join(self.users.keys()))    
4
def isEmpty(self, dictionary):
    for element in dictionary:
        if element:
            return True
        return False

def onMessage(self, socket, message):
    if self.isEmpty(self.users) == False:
        socket.send("Nobody is online, please use REGISTER command" \
                 " in order to register into the server")
    else:
        socket.send("ONLINE " + ' ' .join(self.users.keys()))    
5
def isEmpty(self, dictionary):
    for element in dictionary:
        if element:
            return True
        return False

def onMessage(self, socket, message):
    if self.isEmpty(self.users) == False:
        socket.send("Nobody is online, please use REGISTER command" \
                 " in order to register into the server")
    else:
        socket.send("ONLINE " + ' ' .join(self.users.keys()))    
6
def isEmpty(self, dictionary):
    for element in dictionary:
        if element:
            return True
        return False

def onMessage(self, socket, message):
    if self.isEmpty(self.users) == False:
        socket.send("Nobody is online, please use REGISTER command" \
                 " in order to register into the server")
    else:
        socket.send("ONLINE " + ' ' .join(self.users.keys()))    
7
def isEmpty(self, dictionary):
    for element in dictionary:
        if element:
            return True
        return False

def onMessage(self, socket, message):
    if self.isEmpty(self.users) == False:
        socket.send("Nobody is online, please use REGISTER command" \
                 " in order to register into the server")
    else:
        socket.send("ONLINE " + ' ' .join(self.users.keys()))    
4
def isEmpty(self, dictionary):
    for element in dictionary:
        if element:
            return True
        return False

def onMessage(self, socket, message):
    if self.isEmpty(self.users) == False:
        socket.send("Nobody is online, please use REGISTER command" \
                 " in order to register into the server")
    else:
        socket.send("ONLINE " + ' ' .join(self.users.keys()))    
9
>>> dct = {}
>>> bool(dct)
False
>>> not dct
True
>>>
0

The original dictionary : {}
Is dictionary empty ? : True
8
The original dictionary : {}
Is dictionary empty ? : True
0
The original dictionary : {}
Is dictionary empty ? : True
9
The original dictionary : {}
Is dictionary empty ? : True
0__
The original dictionary : {}
Is dictionary empty ? : True
0523 gold badges125 silver badges222 bronze badges

Tôi đang cố gắng kiểm tra xem một từ điển có trống nhưng nó không hoạt động đúng cách. Nó chỉ bỏ qua nó và hiển thị trực tuyến mà không có gì ngoại trừ hiển thị tin nhắn. Bất kỳ ý tưởng tại sao?Dec 16, 2016 at 10:00

3

Hỏi ngày 20 tháng 4 năm 2014 lúc 1:29

The original dictionary : {}
Is dictionary empty ? : True
3

Từ điển trống đánh giá đến

The original dictionary : {}
Is dictionary empty ? : True
05 trong Python:

Do đó, chức năng

The original dictionary : {}
Is dictionary empty ? : True
06 của bạn là không cần thiết. Tất cả những gì bạn cần làm là:Dec 11, 2018 at 10:11

Đã trả lời ngày 20 tháng 4 năm 2014 lúc 1:31

The original dictionary : {}
Is dictionary empty ? : True
4

Dưới đây là ba cách bạn có thể kiểm tra xem Dict có trống không. Tôi chỉ thích sử dụng cách đầu tiên mặc dù. Hai cách khác là cách quá lâu dài.

Đã trả lời ngày 20 tháng 4 năm 2014 lúc 4:29

  1. Tuyên bố
    The original dictionary : {}
    Is dictionary empty ? : True
    12 được thụt vào một cấp quá sâu. Nó nên nằm ngoài vòng lặp và ở cùng cấp độ với câu lệnh
    The original dictionary : {}
    Is dictionary empty ? : True
    13. Do đó, mã của bạn sẽ chỉ xử lý một, được chọn một cách tùy ý, nếu một khóa tồn tại. Nếu một khóa không tồn tại, hàm sẽ trả về
    The original dictionary : {}
    Is dictionary empty ? : True
    14, sẽ được sử dụng để boolean false. Ouch! Tất cả các từ điển trống sẽ được phân loại là những người giả mạo giả.
  2. Nếu từ điển không trống, thì mã sẽ chỉ xử lý một khóa và trả lại giá trị của nó để boolean. Bạn thậm chí không thể cho rằng cùng một khóa được đánh giá mỗi khi bạn gọi nó. Vì vậy, sẽ có những tích cực sai.
  3. Hãy để chúng tôi nói rằng bạn sửa lỗi thụt vào câu lệnh
    The original dictionary : {}
    Is dictionary empty ? : True
    12 và mang nó ra ngoài vòng
    The original dictionary : {}
    Is dictionary empty ? : True
    13. Sau đó, những gì bạn nhận được là boolean hoặc của tất cả các phím, hoặc
    The original dictionary : {}
    Is dictionary empty ? : True
    05 nếu từ điển trống. Tuy nhiên, bạn sẽ có những tích cực sai lầm và tiêu cực sai. Thực hiện điều chỉnh và kiểm tra chống lại từ điển sau đây để biết bằng chứng.OR of all the keys, or
    The original dictionary : {}
    Is dictionary empty ? : True
    05 if the dictionary empty. Still you will have false positives and false negatives. Do the correction and test against the following dictionary for an evidence.

The original dictionary : {}
Is dictionary empty ? : True
18

Đã trả lời ngày 14 tháng 1 năm 2019 lúc 10:25Jan 14, 2019 at 10:25

DelladellaDella

1.0752 huy hiệu vàng14 Huy hiệu bạc29 Huy hiệu đồng2 gold badges14 silver badges29 bronze badges

Một chiều:

The original dictionary : {}
Is dictionary empty ? : True
5

Trả về 0 nếu không có phần tử khác trả về kích thước của từ điển.

Cách thứ hai:

The original dictionary : {}
Is dictionary empty ? : True
19

trả về sai nếu từ điển trống khác trả về đúng

Andy

8201 Huy hiệu vàng8 Huy hiệu bạc21 Huy hiệu đồng1 gold badge8 silver badges21 bronze badges

Đã trả lời ngày 19 tháng 12 năm 2021 lúc 23:24Dec 19, 2021 at 23:24

ARPAN Sainiarpan SainiArpan Saini

3.65134 Huy hiệu bạc44 Huy hiệu đồng34 silver badges44 bronze badges

3

Bạn cũng có thể sử dụng get (). Ban đầu tôi tin rằng nó chỉ kiểm tra xem khóa tồn tại.

The original dictionary : {}
Is dictionary empty ? : True
6

Những gì tôi thích với GET là nó không kích hoạt một ngoại lệ, vì vậy nó giúp dễ dàng đi qua các cấu trúc lớn.

Đã trả lời ngày 16 tháng 11 năm 2017 lúc 12:49Nov 16, 2017 at 12:49

MortenbmortenbMortenB

2.10323 huy hiệu bạc31 huy hiệu đồng23 silver badges31 bronze badges

The original dictionary : {}
Is dictionary empty ? : True
7

Đã trả lời ngày 3 tháng 9 năm 2020 lúc 13:33Sep 3, 2020 at 13:33

NottootechynottootochyNotTooTechy

3844 Huy hiệu bạc8 Huy hiệu đồng4 silver badges8 bronze badges

Sử dụng bất kỳ'

The original dictionary : {}
Is dictionary empty ? : True
8

Đã trả lời ngày 13 tháng 5 năm 2016 lúc 12:39May 13, 2016 at 12:39

2