04/12/2019, 09:44

Hàm Dictionary str() trong Python

previous Hàm Dictionary str() trong Python tạo ra một biểu diễn dưới dạng chuỗi của một Dictionary. Cú pháp Cú pháp của str() trong Python: str(dict) Tham số: dict : Đây là một Dictionary. ...

previous

Hàm Dictionary str() trong Python tạo ra một biểu diễn dưới dạng chuỗi của một Dictionary.

Cú pháp

Cú pháp của str() trong Python:


str(dict)

Tham số:

  • dict: Đây là một Dictionary.


Ví dụ hàm Dictionary str() trong Python

Ví dụ sau minh họa cách sử dụng của str() trong Python.


dict1 = {'name': 'Viet', 'age': 22, 'address': 'Hanoi'}

print ("Bieu dien chuoi tuong duong la: %s" %str(dict1))

Chạy chương trình Python trên sẽ cho kết quả:

Bieu dien chuoi tuong duong la: {'name': 'Viet', 'age': 22, 'address': 'Hanoi'}
previous
0