2016年1月3日

linux shell--算术运算

摘要: 求和:方法一、使用命令替换法:#!/bin/bashread -p 'input number a...' numAread -p 'input number b...' numB#这里有两个要注意的点,一:等号两边不能有空格、二:小括号之间不能有空格sum=$(($numA+$numB))echo... 阅读全文

posted @ 2016-01-03 17:40 蒋乐兴的技术随笔 阅读(232) 评论(0) 推荐(0) 编辑

python 网络编程第四版

摘要: 使用SocketServer 模块来完成服务端编程1、服务端代码如下:#!/usr/bin/python#!coding:utf-8import SocketServer as socketserverclass ClientHandler(socketserver.BaseRequestHandl... 阅读全文

posted @ 2016-01-03 10:11 蒋乐兴的技术随笔 阅读(346) 评论(0) 推荐(0) 编辑

导航