摘要:
#_author:来童星#date:2019/12/18def division(): num1=int(input('请输入被除数:')) num2=int(input('请输入除数:')) if num2==0: raise ValueError('除数不能为0') result=num1//n 阅读全文
posted @ 2019-12-18 19:48
Stary_tx
阅读(1162)
评论(0)
推荐(0)
摘要:
#_author:来童星#date:2019/12/18def division(): num1=int(input('请输入被除数:')) num2=int(input('请输入除数:')) result=num1//num2 print(result)if __name__=='__main__ 阅读全文
posted @ 2019-12-18 19:41
Stary_tx
阅读(114)
评论(0)
推荐(0)
摘要:
import sockethost='127.0.0.1'port=8080web=socket.socket()web.bind((host,port))web.listen(5)# 设置最多连接数print('服务器等待客户端连接')#开启死循环while True: coon,addr=web 阅读全文
posted @ 2019-12-18 18:47
Stary_tx
阅读(887)
评论(0)
推荐(0)

浙公网安备 33010602011771号