51dev.com IT技术开发者社区

51dev.com 技术开发者社区

wireshark 下载

wireshark 下载

 https://www.wireshark.org/download/win64/ ...

python 阶乘

python 阶乘

 product=1i=1whilei<6:product=i*productprint('i=%d'%i,end='')print('product=%d'%product)i+=1print('阶乘的结果=%d'%product)print()输出i=1product=1i=2p...

python 连加

python 连加

 sum=0number=int(input('请输入整数:'))#递增for循环,从小到大打印出数字print('从小到大排列输出数字:')foriinrange(1,number+1):sum+=i#设置sum为i的和print('%d'%i,end='')#设置输出连加的算式ifi&...

python input选择

python input选择

 例1importsys#声明字符串数组并初始化newspaper=['1.北京晚报','2.作家文摘','3.参考消息','4.证券报','5.不需要']#字符串数组的输出foriinrange(5):print('%s'%newspaper[i],end='')try:choice=i...

python input输入元素相加

python input输入元素相加

 sum=0number=1whileTrue:ifnumber==0:breaknumber=int(input('数字0为结束程序,请输入数字:'))sum+=numberprint('目前累加的结果为:%d'%sum)输出数字0为结束程序,请输入数字:9目前累加的结果为:9数字0为结...

python 数据交换

python 数据交换

 例1defchange(data):data[0],data[1]=data[1],data[0]print('函数内交换位置后:')foriinrange(2):print('data[%d]=%3d'%(i,data[i]),end='')#主程序data=[16,25]print(...

python 插入查找

python 插入查找

 definterpolation_search(data,val):low=0high=len(data)-1print('查找过程中......')whilelow<=highandval!=-1:mid=low+int((val-data[low])*(high-low)/(d...

python 线性查找

python 线性查找

 importrandomval=0data=[5,6,7,8,9]whileval!=-1:find=0val=int(input('请输入查找键值(1-9),输入-1离开:'))foriindata:ifi==val:print('在第%3d个位置找到键值[%3d]'%(i+1,i))...

Ubuntu14.04 获取文件或者文件夹大小

Ubuntu14.04 获取文件或者文件夹大小

 [root@bogon~]#stat-c%sinstall.log26593 ...

Python网络编程(Sockets)

Python网络编程(Sockets)

 #!/usr/bin/python3#Thisisserver.pyfileimportsocket#createasocketobjectserversocket=socket.socket(socket.AF_INET,socket.SOCK_STREAM)#getlocalmach...

python 正则

python 正则

 #!/usr/bin/python3importreline="Catsaresmarterthandogs"matchObj=re.match(r'(.*)are(.*?).*',line,re.M|re.I)ifmatchObj:print("matchObj.group():",m...

Python多线程编程

Python多线程编程

 thread模块#!/usr/bin/python3import_threadimporttime#Defineafunctionforthethreaddefprint_time(threadName,delay):count=0whilecount<5:time.sleep(d...

Python XML解析和处理

Python XML解析和处理

 movies.xml<collectionshelf="NewArrivals"><movietitle="EnemyBehind"><type>War,Thriller</type><format>DVD</format...

python 迭代器

python 迭代器

 例子一#definealistmy_list=[4,7,0,3]#getaniteratorusingiter()my_iter=iter(my_list)##iteratethroughitusingnext()#prints4print(next(my_iter))#prints7p...

python 生成器

python 生成器

一 #Initializethelistmy_list=[1,3,6,10]#squareeachtermusinglistcomprehension#Output:[1,9,36,100][x**2forxinmy_list]#samethingcanbedoneusinggenerat...