Quantcast
Channel: chooru_code » deletion
Browsing latest articles
Browse All 4 View Live

Image may be NSFW.
Clik here to view.

Python: Deleting list element by its index

aList = [10, 11, 12, 13, 14, 15] del aList[2] # [10, 11, 13, 14, 15]

View Article



Image may be NSFW.
Clik here to view.

Python: Deleting part of list

alist = [10, 11, 12, 13, 14, 15, 16, 17, 18, 19] del alist[2:6] # [10, 11, 16, 17, 18, 19]

View Article

Image may be NSFW.
Clik here to view.

NetRW: Deleting Files

[ Files matched for the pattern Log_* ] The NetRW plugin is a pretty full-fledged file explorer that ships with ViM. Other than opening files and directories, for me the most frequent operation in...

View Article

Image may be NSFW.
Clik here to view.

How to delete a symbolic link in Windows

A symbolic link can be created at the command-line using the mklink command of the command prompt. To delete a symbolic link to a file use the del command: del Foo.txt To delete a symbolic link to a...

View Article
Browsing latest articles
Browse All 4 View Live




Latest Images