This file contains hidden or 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
import argparse | |
parser = argparse.ArgumentParser(description='De-Generate Acronym') | |
parser.add_argument('acronym', metavar='ACR', | |
help='the acronym') | |
parser.add_argument('keywords', metavar='KEY', nargs='+', | |
help='some keywords') | |
args = parser.parse_args() |
This file contains hidden or 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
def acronator(acronym, list_of_keywords): | |
pass |
This file contains hidden or 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
shortcuts2 = dict: | |
edit__comment = 'Ctrl+R,' | |
edit__copy = 'Ctrl+C,Ctrl+Insert' | |
edit__cut = 'Ctrl+X,Shift+Delete' | |
edit__dedent = 'Shift+Tab,' | |
edit__delete_line = 'Ctrl+D,' | |
edit__find_next = 'Ctrl+G,F3' | |
edit__find_or_replace = 'Ctrl+F,' | |
edit__find_previous = 'Ctrl+Shift+G,Shift+F3' |
NewerOlder