Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for last_name (0.19 sec)

  1. docs/tr/docs/python-types.md

    ### Tipleri ekle
    
    Önceki sürümden sadece bir satırı değiştirelim.
    
    Tam olarak bu parçayı, işlevin parametrelerini  değiştireceğiz:
    
    ```Python
        first_name, last_name
    ```
    
    ve bu hale getireceğiz:
    
    ```Python
        first_name: str, last_name: str
    ```
    
    Bu kadar.
    
    İşte bunlar "tip belirteçleri":
    
    ```Python hl_lines="1"
    {!../../../docs_src/python_types/tutorial002.py!}
    ```
    
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 9.7K bytes
    - Viewed (0)
  2. docs/uk/docs/python-types.md

    ```Python
        first_name, last_name
    ```
    
    на:
    
    ```Python
        first_name: str, last_name: str
    ```
    
    Ось і все.
    
    Це "type hints":
    
    ```Python hl_lines="1"
    {!../../../docs_src/python_types/tutorial002.py!}
    ```
    
    Це не те саме, що оголошення значень за замовчуванням, як це було б з:
    
    ```Python
        first_name="john", last_name="doe"
    ```
    
    Це зовсім інше.
    
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 19.7K bytes
    - Viewed (0)
  3. docs/de/docs/python-types.md

    Lassen Sie uns eine einzelne Zeile aus der vorherigen Version ändern.
    
    Wir ändern den folgenden Teil, die Parameter der Funktion, von:
    
    ```Python
        first_name, last_name
    ```
    
    zu:
    
    ```Python
        first_name: str, last_name: str
    ```
    
    Das war's.
    
    Das sind die „Typhinweise“:
    
    ```Python hl_lines="1"
    {!../../../docs_src/python_types/tutorial002.py!}
    ```
    
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Sat Mar 30 20:29:25 GMT 2024
    - 19.3K bytes
    - Viewed (0)
  4. docs/vi/docs/python-types.md

    ```Python
        first_name, last_name
    ```
    
    sang:
    
    ```Python
        first_name: str, last_name: str
    ```
    
    Chính là nó.
    
    Những thứ đó là "type hints":
    
    ```Python hl_lines="1"
    {!../../../docs_src/python_types/tutorial002.py!}
    ```
    
    Đó không giống như khai báo những giá trị mặc định giống như:
    
    ```Python
        first_name="john", last_name="doe"
    ```
    
    Nó là một thứ khác.
    
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 21.9K bytes
    - Viewed (0)
  5. docs/em/docs/python-types.md

    👥 🔜 🔀 ⚫️❔ 👉 🧬, 🔢 🔢, ⚪️➡️:
    
    ```Python
        first_name, last_name
    ```
    
    :
    
    ```Python
        first_name: str, last_name: str
    ```
    
    👈 ⚫️.
    
    👈 "🆎 🔑":
    
    ```Python hl_lines="1"
    {!../../../docs_src/python_types/tutorial002.py!}
    ```
    
    👈 🚫 🎏 📣 🔢 💲 💖 🔜 ⏮️:
    
    ```Python
        first_name="john", last_name="doe"
    ```
    
    ⚫️ 🎏 👜.
    
    👥 ⚙️ ❤ (`:`), 🚫 🌓 (`=`).
    
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 13.6K bytes
    - Viewed (0)
  6. docs/en/docs/python-types.md

    ```Python
        first_name, last_name
    ```
    
    to:
    
    ```Python
        first_name: str, last_name: str
    ```
    
    That's it.
    
    Those are the "type hints":
    
    ```Python hl_lines="1"
    {!../../../docs_src/python_types/tutorial002.py!}
    ```
    
    That is not the same as declaring default values like would be with:
    
    ```Python
        first_name="john", last_name="doe"
    ```
    
    It's a different thing.
    
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 17K bytes
    - Viewed (0)
  7. docs/bn/docs/python-types.md

    ```Python
        first_name, last_name
    ```
    
    থেকে এইগুলি:
    
    ```Python
        first_name: str, last_name: str
    ```
    
    ব্যাস।
    
    এগুলিই "টাইপ হিন্ট":
    
    ```Python hl_lines="1"
    {!../../../docs_src/python_types/tutorial002.py!}
    ```
    
    এটি ডিফল্ট ভ্যালু ঘোষণা করার মত নয় যেমন:
    
    ```Python
        first_name="john", last_name="doe"
    ```
    
    এটি একটি ভিন্ন জিনিস।
    
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Wed Apr 03 15:34:37 GMT 2024
    - 36K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/internal/http2/MockHttp2Peer.kt

      fun truncateLastFrame(length: Int): Http2Writer {
        val lastFrame = outFrames.removeAt(outFrames.size - 1)
        require(length < bytesOut.size - lastFrame.start)
    
        // Move everything from bytesOut into a new buffer.
        val fullBuffer = Buffer()
        bytesOut.read(fullBuffer, bytesOut.size)
    
        // Copy back all but what we're truncating.
        fullBuffer.read(bytesOut, lastFrame.start + length)
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Thu Apr 11 22:09:35 GMT 2024
    - 8.7K bytes
    - Viewed (0)
Back to top