Tôi đang thực hành sử dụng gợi ý kiểu trong Python 3.5. Một trong những đồng nghiệp của tôi sử dụng typing.Dict
:
import typing
def change_bandwidths(new_bandwidths: typing.Dict,
user_id: int,
user_name: str) -> bool:
print(new_bandwidths, user_id, user_name)
return False
def my_change_bandwidths(new_bandwidths: dict,
user_id: int,
user_name: str) ->bool:
print(new_bandwidths, user_id, user_name)
return True
def main():
my_id, my_name = 23, "Tiras"
simple_dict = {"Hello": "Moon"}
change_bandwidths(simple_dict, my_id, my_name)
new_dict = {"new": "energy source"}
my_change_bandwidths(new_dict, my_id, my_name)
if __name__ == "__main__":
main()
Cả hai đều hoạt động tốt, dường như không có sự khác biệt.
Tôi đã đọc typing
tài liệu mô-đun .
Tôi nên sử dụng cái nào giữa typing.Dict
hay dict
cái nào trong chương trình?