This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Music | |
PewDiePie | |
T-Series | |
Gaming | |
YouTube Movies | |
Sports | |
5-Minute Crafts | |
Canal KondZilla | |
Justin Bieber | |
SET India |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Prints the line number, the line and the characters count | |
# of those lines in the file | |
# which exceed the 80 character limit. | |
import sys | |
#infile = open ("YOUR-FILE-NAME") | |
infile = open ("q1.rkt") | |
# Prints total number of lines in the program |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# directkeys.py | |
# http://stackoverflow.com/questions/13564851/generate-keyboard-events | |
# msdn.microsoft.com/en-us/library/dd375731 | |
import ctypes | |
from ctypes import wintypes | |
import time | |
user32 = ctypes.WinDLL('user32', use_last_error=True) |