fork download
  1. # import sys
  2. # print(sys.version)
  3. from platform import python_version
  4. print("Python version:", python_version())
  5.  
  6. import keyword
  7. print(keyword.kwlist)
  8. print (len(keyword.kwlist))
  9. # your code goes here
Success #stdin #stdout 0.04s 10204KB
stdin
Standard input is empty
stdout
Python version: 3.9.5
['False', 'None', 'True', '__peg_parser__', 'and', 'as', 'assert', 'async', 'await', 'break', 'class', 'continue', 'def', 'del', 'elif', 'else', 'except', 'finally', 'for', 'from', 'global', 'if', 'import', 'in', 'is', 'lambda', 'nonlocal', 'not', 'or', 'pass', 'raise', 'return', 'try', 'while', 'with', 'yield']
36