潇洒老虎

文章
2
资源
0
加入时间
2年10月24天

ubuntu下好用的虚拟串口工具

To install socat on Ubuntu (I'm using 12.04) just run the following command:# sudo apt-get install socatSetting up two serial linesnow on a terminal window run socat# socat -d -d PTY PTYThe output should look like the following one:...

python list练习题

1.合并两个有序列表,并且保持合并后的列表有序In[20]:lst1=[32,42,12,5,14,4,1]In[21]:lst2=[199,22,324,89,2]In[22]:help(lst1.sort)Helponbuilt-infunctionsort:sort(...)methodofbuiltins...