Normal Mode
dd
Delete (cut) line
2dd → delete 2 lines
1
2
3
4
def greet(name):
msg = "hello, " + name
print(msg)
return msg
-- NORMAL --
Free practice — click the editor, then type. Try
dd yourself.Delete (cut) line
dd yourself.