Insert Mode
a
Insert after cursor
a → cursor moves one right
1
2
3
4
def greet(name):
msg = "hello, " + name
print(msg)
return msg
-- NORMAL --
Free practice — click the editor, then type. Try
a yourself.Insert after cursor
a yourself.