testselectionextensioncontrolwhile.py
来自「Python Development Environment (Python I」· Python 代码 · 共 26 行
PY
26 行
class A:
def test(self):
a = 1
while (a < 2):
a += 1
var = a * a
print var
def myMethod(self):
print self.anAttribute
a = A()
a.test()
##c selection starts at the first char, but we have to normalize indentation!
'''
<config>
<offset>51</offset>
<selectionLength>33</selectionLength>
</config>
'''
##r
while (a < 2):
a += 1
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?