摘要:
class Student(object): @property def score(self): return self._score @score.setter def score(self, value): if not isinstance... 阅读全文
摘要:
下面是几个vi与行移动有关的命令:G:光标移至最后一行nG:光标移至第n行首n+:光标下移n行n-:光标上移n行注意输入命令,需要首先按ESC键回到命令模式。转自:http://zhidao.baidu.com/link?url=g6KMde5QV2O4ctJDTzmbu2xzcGbx2gEmSad... 阅读全文