Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 33 for last_name (0.23 sec)

  1. 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)
  2. 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)
  3. 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)
  4. docs/ja/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: Fri Mar 22 01:42:11 GMT 2024
    - 11.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. tests/test_read_with_orm_mode.py

        person_data = {"name": "Dive", "lastname": "Wilson"}
        response = client.post("/people/", json=person_data)
        data = response.json()
        assert response.status_code == 200, response.text
        assert data["name"] == person_data["name"]
        assert data["lastname"] == person_data["lastname"]
        assert data["full_name"] == person_data["name"] + " " + person_data["lastname"]
    
    
    @needs_pydanticv1
    Python
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Fri Jul 07 17:12:13 GMT 2023
    - 2.4K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb1/net/NetServerEnum2Response.java

        private String lastName;
    
    
        /**
         * 
         * @param config
         */
        public NetServerEnum2Response ( Configuration config ) {
            super(config);
        }
    
    
        /**
         * @return the lastName
         */
        public final String getLastName () {
            return this.lastName;
        }
    
    
        @Override
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 5.6K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/NetServerEnum2.java

            maxParameterCount = 8;
            maxDataCount = 16384;
            maxSetupCount = (byte)0x00;
            setupCount = 0;
            timeout = 5000;
        }
    
        void reset( int key, String lastName ) {
            super.reset();
            this.lastName = lastName;
        }
    
        int writeSetupWireFormat( byte[] dst, int dstIndex ) {
            return 0;
        }
        int writeParametersWireFormat( byte[] dst, int dstIndex ) {
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 3.5K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb1/trans2/Trans2FindFirst2Response.java

        /**
         * @return the isEndOfSearch
         */
        public final boolean isEndOfSearch () {
            return this.isEndOfSearch;
        }
    
    
        /**
         * @return the lastName
         */
        public final String getLastName () {
            return this.lastName;
        }
    
    
        /**
         * @return the resumeKey
         */
        public final int getResumeKey () {
            return this.resumeKey;
        }
    
    
        @Override
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 5.7K bytes
    - Viewed (0)
Back to top