mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-02-05 13:27:49 +08:00
Added more words - list/string methods + library functions
This commit is contained in:
parent
55a4e5b5a3
commit
f887f86e66
1 changed files with 132 additions and 20 deletions
|
@ -2,57 +2,169 @@
|
|||
"name": "code_python",
|
||||
"leftToRight": true,
|
||||
"words": [
|
||||
"abs",
|
||||
"all",
|
||||
"and",
|
||||
"any",
|
||||
"append",
|
||||
"as",
|
||||
"ascii",
|
||||
"assert",
|
||||
"bin",
|
||||
"bool",
|
||||
"break",
|
||||
"bytearray",
|
||||
"bytes",
|
||||
"callable",
|
||||
"capitalise",
|
||||
"capitalize",
|
||||
"casefold",
|
||||
"ceil",
|
||||
"center",
|
||||
"chr",
|
||||
"class",
|
||||
"classmethod",
|
||||
"clear",
|
||||
"compile",
|
||||
"complex",
|
||||
"continue",
|
||||
"copy",
|
||||
"count",
|
||||
"def",
|
||||
"del",
|
||||
"delattr",
|
||||
"dict",
|
||||
"dir",
|
||||
"divmod",
|
||||
"elif",
|
||||
"else",
|
||||
"encode",
|
||||
"endswith",
|
||||
"enumerate",
|
||||
"eval",
|
||||
"except",
|
||||
"exec",
|
||||
"exp",
|
||||
"expandtabs",
|
||||
"extend",
|
||||
"fabs",
|
||||
"factorial",
|
||||
"False",
|
||||
"filter",
|
||||
"finally",
|
||||
"find",
|
||||
"float",
|
||||
"for",
|
||||
"format",
|
||||
"from",
|
||||
"fromkeys",
|
||||
"frozenset",
|
||||
"get",
|
||||
"getattr",
|
||||
"global",
|
||||
"globals",
|
||||
"hasattr",
|
||||
"hash",
|
||||
"help",
|
||||
"hex",
|
||||
"id",
|
||||
"if",
|
||||
"import",
|
||||
"in",
|
||||
"index",
|
||||
"input",
|
||||
"insert",
|
||||
"int",
|
||||
"is",
|
||||
"isalnum",
|
||||
"isalpha",
|
||||
"isdecimal",
|
||||
"isdigit",
|
||||
"isidentifie",
|
||||
"isinstance",
|
||||
"islower",
|
||||
"isnumeric",
|
||||
"isprintable",
|
||||
"isspace",
|
||||
"issubclass",
|
||||
"istitle",
|
||||
"isupper",
|
||||
"items",
|
||||
"iter",
|
||||
"join",
|
||||
"keys",
|
||||
"lambda",
|
||||
"len",
|
||||
"list",
|
||||
"ljust",
|
||||
"locals",
|
||||
"lower",
|
||||
"lstrip",
|
||||
"maketrans",
|
||||
"map",
|
||||
"max",
|
||||
"memoryview",
|
||||
"min",
|
||||
"next",
|
||||
"None",
|
||||
"not",
|
||||
"object",
|
||||
"oct",
|
||||
"open",
|
||||
"or",
|
||||
"ord",
|
||||
"partition",
|
||||
"pass",
|
||||
"pop",
|
||||
"popitem",
|
||||
"pow",
|
||||
"print",
|
||||
"property",
|
||||
"raise",
|
||||
"range",
|
||||
"remove",
|
||||
"replace",
|
||||
"repr",
|
||||
"return",
|
||||
"reverse",
|
||||
"reversed",
|
||||
"rfind",
|
||||
"rindex",
|
||||
"rjust",
|
||||
"round",
|
||||
"rpartition",
|
||||
"rsplit",
|
||||
"rstrip",
|
||||
"set",
|
||||
"setattr",
|
||||
"setdefault",
|
||||
"slice",
|
||||
"sort",
|
||||
"sorted",
|
||||
"split",
|
||||
"splitlines",
|
||||
"sqrt",
|
||||
"startswith",
|
||||
"staticmethod",
|
||||
"str",
|
||||
"strip",
|
||||
"sum",
|
||||
"super",
|
||||
"swapcase",
|
||||
"title",
|
||||
"translate",
|
||||
"True",
|
||||
"try",
|
||||
"tuple",
|
||||
"type",
|
||||
"update",
|
||||
"upper",
|
||||
"values",
|
||||
"vars",
|
||||
"while",
|
||||
"with",
|
||||
"yield",
|
||||
"print",
|
||||
"len",
|
||||
"str",
|
||||
"int",
|
||||
"float",
|
||||
"list",
|
||||
"tuple",
|
||||
"dict",
|
||||
"set",
|
||||
"range",
|
||||
"sum",
|
||||
"enumerate",
|
||||
"zip",
|
||||
"bool",
|
||||
"reversed",
|
||||
"sorted",
|
||||
"min",
|
||||
"max",
|
||||
"any",
|
||||
"all"
|
||||
"zfill",
|
||||
"zip"
|
||||
]
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue