Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for sayHello (0.04 sec)

  1. docs_src/python_types/tutorial013.py

    from typing_extensions import Annotated
    
    
    def say_hello(name: Annotated[str, "this is just metadata"]) -> str:
    Registered: 2025-05-25 07:19
    - Last Modified: 2023-03-18 12:29
    - 138 bytes
    - Viewed (0)
  2. docs_src/python_types/tutorial013_py39.py

    from typing import Annotated
    
    
    def say_hello(name: Annotated[str, "this is just metadata"]) -> str:
    Registered: 2025-05-25 07:19
    - Last Modified: 2023-03-18 12:29
    - 127 bytes
    - Viewed (0)
Back to top