Advertisement
padznich

Untitled

Apr 16th, 2019
4,283
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2. Types:
  3. Int, float, long
  4. Str https://metanit.com/python/tutorial/4.5.php
  5. list, tuple
  6. Set, dict
  7. FrosenSet
  8. https://metanit.com/python/tutorial/3.1.php
  9.  
  10.  
  11.  
  12. ###################
  13. >>> a = 0.1
  14.  
  15. >>> b = 0.2
  16.  
  17. >>> c = a + b
  18.  
  19. >>> c == 0.3
  20.  
  21. False
  22.  
  23. >>> c
  24.  
  25. 0.30000000000000004
  26.  
  27.  
  28.  
  29.  
  30.  
  31. _________________________
  32.  
  33. FILES / OS
  34.  
  35. Binary Files / Pickle / Shelve
  36. https://metanit.com/python/tutorial/3.1.php
  37.  
  38. https://metanit.com/python/tutorial/4.5.php
  39.  
  40.  
  41. _________________________
  42.  
  43.  
  44. Decimal
  45. https://metanit.com/python/tutorial/6.4.php
  46.  
  47. Fraction
  48. https://pythonworld.ru/moduli/modul-fractions.html
  49.  
  50.  
  51.  
  52.  
  53.  
  54. _____________________________________________________________ BASH
  55.  
  56. https://www.pluralsight.com/blog/it-ops/linux-commands-for-beginners
  57. https://dev.to/awwsmm/101-bash-commands-and-tips-for-beginners-to-experts-30je
  58.  
  59. pwd / ls / cd
  60. - cd
  61.     cd ~
  62.     cd ..
  63.     cd /
  64. - ls
  65.     ls -l
  66.     ls -la
  67. - whoami
  68.  
  69. - touch
  70. - mkdir
  71.     mkdir -p
  72. - ln
  73. - rm
  74.     - rm -rf
  75. - cat
  76. - head
  77. - tail
  78.     tail -f
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement