Files
freeCodeCamp/guide/english/python
Naveenkumar Mortha cf44c7246d Added steps to check keywords in python (#21511)
* Added steps to check keywords in python

>>> import keyword
>>> print (keyword.kwlist)
['False', 'None', 'True', 'and', 'as', 'assert', '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']
>>>

* Format the text properly
2018-11-14 18:14:24 -07:00
..
2018-11-13 23:18:13 +00:00
2018-10-20 10:20:06 -07:00
2018-10-31 23:17:57 -04:00
2018-10-20 10:17:14 -07:00
2018-10-20 18:40:06 +02:00
2018-10-20 10:18:18 -07:00
2018-11-09 03:59:26 -05:00
2018-10-21 14:26:29 -04:00