python练习题
Posted 一株草
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python练习题相关的知识,希望对你有一定的参考价值。
问题:使用struct来构建tcp数据包
#coding=utf-8 from random import randint import struct #源端口 source_port = randint(1,65535); #目的端口 dst_port = 23; #32位确认序号 ack_sn=0; #32序号 sn=randint(1,65535*65535); #数据包窗口 windows=4096 data=struct.pack(\'>HHIIBBH\',source_port,dst_port,sn,ack_sn,80,2,windows); hd = open(\'data.bin\',\'wb\'); hd.write(data); hd.close();
以上是关于python练习题的主要内容,如果未能解决你的问题,请参考以下文章
Python matplotlib 基础练习:画出正弦曲线等
spring练习,在Eclipse搭建的Spring开发环境中,使用set注入方式,实现对象的依赖关系,通过ClassPathXmlApplicationContext实体类获取Bean对象(代码片段