在emacs中,当使用python语言进行编辑时,如何将光标从for循环的开头导航到循环的结尾?
在其他使用大括号的语言中,从花括号位置键入C-M-n或C-M-p会将光标移动到循环的末尾或开头。python代码有没有类似的组合键?
示例:从foo循环的开头导航到结尾,或者导航到bar或xyz循环:
for foo in foolist:
for bar in barlist:
if foo > 100:
print "foo large"
else:
if bar > 100:
我使用Python 3并要求用户输入:
name = input("Please state your name ")
我希望用户看到光标,以便他们知道输入将在哪里进行。我在名字后面使用两个空格,以便它们在消息和键入的内容之间有空间,但是希望有一个像这样的闪烁光标:
Please state your name __
代码:
s = input("Enter a String : \n")
print("The Entered String is : " + s)
print("The Length of Entered String is : " + str(len(s)))
输出:
┌─[jaysmito@parrot]─[~/Desktop]
└──╼ $python try.py
Enter a String :
hello
The Entered String is : hello
The Length of Entered String is :