Python教程

Python教程:包含了所有代写案例以及部分答案

  • 此段代码可以利用剪切板,完成自动复制粘贴等功能。 import sys import os.path import win32clipboard as w import win32con import win32api def getText():#读取剪切板 w.OpenClipboard() d = w.GetClipboardData(win32con.CF_TEXT) w.CloseClipboard() return d def setText(aString):#写入剪切板 w.Op … 继续阅读“Python使用剪切板代码”

    :
  • # 9*9 for i in list(range(1,10)): for j in list(range(1,10)): if i >= j: print(i * j, ”, end=”); else: print("\n"); break; 标签:python

    :
  • #coding: UTF-8 def arrage(temp_list): num = len(temp_list) for i in range(1,num): for j in range(i): if temp_list[i] >= temp_list[j] and j == (i-1): break elif temp_list[i] <= temp_list[j] and j == 0: temp_list.insert(0,temp_list.pop(i)) elif t … 继续阅读“python实现插入排序”

    :
  • 目前处在学习python的阶段,昨天看到了python的socket模块,分别实现TCP、UDP时间戳回显。 1、tcp通信server和client代码 # tcpServer.py #!/usr/bin/python # -*- coding: utf-8 -*- from socket import * from time import ctime HOST = ” PORT = 21156 BUFSIZE = 1024 ADDR = (HOST,PORT) tcpServerSock … 继续阅读“Python的socket编程”

    :