Introduction to the typing module in Python (code example)

不言
Release: 2018-11-23 17:04:45
forward
8422 people have browsed it
This article brings you an introduction to the typing module in Python (code examples). It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.

Python is a weakly typed language. Many times we may not know the function parameter type or return value type, which may lead to some types not specifying methods. The typing module can solve this problem very well.

The addition of this module will not affect the running of the program, and no formal errors will be reported, only reminders.

The typing module can only be used in python3.5 or above. Pycharm currently supports typing check

1. The role of the typing module

1. Type Check to prevent parameter and return value type inconsistencies from occurring during runtime.

2. As an attachment to the development document, it is convenient for users to pass in and return parameter types when calling.

2. Commonly used methods of typing module

Look at the example code first:

from typing import List,Tuple,Dict
def add(a:int,string:str,f:float,b:bool)->Tuple[List,Tuple,Dict,bool]:
    list1=list(range(a))
    tup=(string,string,string)
    d={"a":f}
    bl=b
    return list1,tup,d,bl

if __name__ == '__main__':
    print(add(5,'mark',183.1,False))
Copy after login

Run result:

([0, 1, 2, 3, 4], ('mark', 'mark', 'mark'), {'a': 183.1}, False)
Copy after login

Explanation:

  1. When passing in parameters, declare the type of the parameter in the form of "parameter name: type";

  2. The return result is passed in "-> Declare the result type in the form of "result type"

  3. . If the parameter type is incorrect when calling, pycharm will remind you, but it will not affect the running of the program.

  4. For lists such as lists, you can also specify something more specific, such as "->List[str]", which specifies that a list is returned and the elements are strings.

Now modify the above code, you can see that the pycharm background turns yellow, which is the error type reminder:

Introduction to the typing module in Python (code example)

3. Commonly used types of typing

  1. int, long, float: integer, long integer, floating point type

  2. bool,str: Boolean type, string type

  3. List, Tuple, Dict, Set: list, tuple, dictionary, set

  4. Iterable, Iterator: Iterator, iterator type

  5. Generator: Generator type

four , typing supports possible multiple types

Since Python inherently supports polymorphism, there may be multiple elements in the iterator.

Code example:

from typing import List, Tuple, Dict


def add(a: int, string: str, f: float, b: bool or str) -> Tuple[List, Tuple, Dict, str or bool]:
    list1 = list(range(a))
    tup = (string, string, string)
    d = {"a": f}
    bl = b
    return list1, tup, d, bl


if __name__ == '__main__':
    print(add(5, 'mark', 183.1, False))
    print(add(5, 'mark', 183.1, 'False'))
Copy after login

Running result (no different from not using typing):

([0, 1, 2, 3, 4], ('mark', 'mark', 'mark'), {'a': 183.1}, False)
([0, 1, 2, 3, 4], ('mark', 'mark', 'mark'), {'a': 183.1}, 'False')
Copy after login

The above is the detailed content of Introduction to the typing module in Python (code example). For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:segmentfault.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!