约 1,010,000 个结果
在新选项卡中打开链接
  1. Python - Socket Programming - Online Tutorials Library

    In Python, the socket module is used for socket programming. The socket module in the standard library included functionality required for communication between server and client at hardware level.

  2. Socket Programming in Python (Guide) – Real Python

    In this in-depth tutorial, you'll learn how to build a socket server and client with Python. By the end of this tutorial, you'll understand how to use the main functions and methods in Python's socket module to …

  3. Welcome to Python.org

    Python knows the usual control flow statements that other languages speak — if, for, while and range — with some of its own twists, of course. More control flow tools in Python 3 Experienced programmers …

  4. The Python TutorialPython 3.14.3 documentation

    2026年3月25日 · The Python Tutorial ¶ Tip This tutorial is designed for programmers that are new to the Python language, not beginners who are new to programming. Python is an easy to learn, powerful …

  5. python socket - Python Tutorial

    python socket Python hosting: Host, run, and code Python in the cloud! In this tutorial you will learn about in network programming. You will learn about the client-server model that is in use for the …

  6. Download Python | Python.org

    2001年6月22日 · Looking for Python with a different OS? Python for Windows, Linux/Unix, macOS, Android, other Want to help test development versions of Python 3.15? Pre-releases, Docker images

  7. socket — Low-level networking interface — Python 3.14.3 …

    The Python interface is a straightforward transliteration of the Unix system call and library interface for sockets to Python’s object-oriented style: the socket() function returns a socket object whose …

  8. Tutorial - Introduction | Socket.IO

    How to use this tutorial Tooling Any text editor (from a basic text editor to a complete IDE such as VS Code) should be sufficient to complete this tutorial. Additionally, at the end of each step you will find …

  9. Programación de sockets en Python: una guía para principiantes

    2023年10月10日 · Este artículo trata sobre la programación de sockets en Python. Hemos discutido la comunicación usando el protocolo TCP y el protocolo UDP usando la programación de sockets en …

  10. Python's asyncio: A Hands-On Walkthrough – Real Python

    2025年7月30日 · Python’s asyncio library enables you to write concurrent code using the async and await keywords. The core building blocks of async I/O in Python are awaitable objects—most often …