Advertisement
Guest User

Untitled

a guest
Sep 25th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. List of words and symbols used:
  2.  
  3.  
  4.  
  5. Keywords:
  6.  
  7. print
  8.  
  9. raw_input()
  10.  
  11. from
  12.  
  13. sys
  14.  
  15. os.path
  16.  
  17. import
  18.  
  19. argv
  20.  
  21. exists
  22.  
  23. open()
  24.  
  25. close()
  26.  
  27. read()
  28.  
  29. readline()
  30.  
  31. write()
  32.  
  33. truncate()
  34.  
  35. *args
  36.  
  37. seek
  38.  
  39. and
  40.  
  41. or
  42.  
  43. not
  44.  
  45. if
  46.  
  47. in
  48.  
  49. range()
  50.  
  51. for
  52.  
  53. while
  54.  
  55. del
  56.  
  57. as
  58.  
  59. elif
  60.  
  61. global
  62.  
  63. or
  64.  
  65. with
  66.  
  67. assert
  68.  
  69. else
  70.  
  71. pass
  72.  
  73. yield
  74.  
  75. break
  76.  
  77. except
  78.  
  79. class
  80.  
  81. exec
  82.  
  83. raise
  84.  
  85. continue
  86.  
  87. finally
  88.  
  89. is
  90.  
  91. return
  92.  
  93. def
  94.  
  95. lambda
  96.  
  97. try
  98.  
  99. join
  100.  
  101. pop
  102.  
  103. split
  104.  
  105. dir
  106.  
  107. getattr
  108.  
  109. __init__
  110.  
  111. object
  112.  
  113. class
  114.  
  115. self
  116.  
  117. pass
  118.  
  119. ValueError
  120.  
  121. None
  122.  
  123.  
  124.  
  125. Data Types:
  126.  
  127. True
  128.  
  129. False
  130.  
  131. None
  132.  
  133. strings
  134.  
  135. numbers
  136.  
  137. floats
  138.  
  139. lists
  140.  
  141.  
  142.  
  143. Operators:
  144.  
  145. +
  146.  
  147. -
  148.  
  149. /
  150.  
  151. //
  152.  
  153. *
  154.  
  155. **
  156.  
  157. %
  158.  
  159. <
  160.  
  161. >
  162.  
  163. <=
  164.  
  165. >=
  166.  
  167. =
  168.  
  169. !=
  170.  
  171. ==
  172.  
  173. <>
  174.  
  175. ( )
  176.  
  177. [ ]
  178.  
  179. { }
  180.  
  181. @
  182.  
  183. ,
  184.  
  185. :
  186.  
  187. .
  188.  
  189. ;
  190.  
  191. +=
  192.  
  193. -=
  194.  
  195. *=
  196.  
  197. /=
  198.  
  199. //=
  200.  
  201. %=
  202.  
  203. **=
  204.  
  205.  
  206.  
  207. String Formats:
  208.  
  209. %d
  210.  
  211. %i
  212.  
  213. %o
  214.  
  215. %u
  216.  
  217. %x
  218.  
  219. %X
  220.  
  221. %e
  222.  
  223. %E
  224.  
  225. %f
  226.  
  227. %F
  228.  
  229. %g
  230.  
  231. %G
  232.  
  233. %c
  234.  
  235. %r
  236.  
  237. %s
  238.  
  239. %%
  240.  
  241.  
  242.  
  243. String Escape Sequences:
  244.  
  245. \a
  246.  
  247. \b
  248.  
  249. \f
  250.  
  251. \n
  252.  
  253. \r
  254.  
  255. \t
  256.  
  257. \v
  258.  
  259. \\
  260.  
  261. \"
  262.  
  263. \'
  264.  
  265. "
  266.  
  267. '
  268.  
  269. """
  270.  
  271. '''
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement