2017年7月6日星期四

Python编程快速上手之第6.7实践



#! /user/local/bin/python3#print the tabletableData = [['apples', 'oranges', 'cherries', 'banana'],        ['Alice', 'Bob', 'Carol', 'David'],        ['dogs', 'cats', 'moose', 'goose']] 
# Code for printing table
def printTable(data):
    maxRow = len(max(data)) # determine the row of table
    numberOfColumn = len(data) # determine the cloumn of table
    colWidths=[0]*numberOfColumn # find the widest word in each column
    for i in range(numberOfColumn):
            colWidths[i]=len(max(data[i]))
    maxWidth = max(colWidths) # determine the width 

#以下需要优化
    # print the table
    for j in range(maxRow):
        for i in range(numberOfColumn):
            print(data[i][j].ljust(maxWidth+5), end='') # print the first item of the each sublist
        print()
printTable(tableData)

2009年12月8日星期二

真相

一到无形的墙横跨在我面前,我努力地翻呀,终于把脑袋耷拉在墙头。这一耷拉可把我给迷糊了。我原以为是正确的东西,现在看来却是肮脏的把戏


2008年4月19日星期六

坚强的活着



生命也可以坚强的。

2008年4月5日星期六

Beijing2008,应该不是政治


今日不小心发现notepad++加入了抵制beijing2008的行列,这是今日的截图。


notepad++.JPG


beijing2008,本是一场体育盛世,然而却逐渐成为一场政治较量。可能是我太天真了吧。


PS:像我这种FQ,只能无奈的和notepad++说byebye,以示抗议。


2008年3月20日星期四

解决“通用卷无法卸载”问题

近日实验室的电脑无法卸载我的U盘。我自信该电脑上无病毒。Google一下,找到解决方法--ulocker。


顺便也给两个连接:


1. 闪存无法卸载究竟为什么


2. XP无法停止"通用卷"的解决方法