Skip to content

Latest commit

 

History

History
12 lines (11 loc) · 274 Bytes

File metadata and controls

12 lines (11 loc) · 274 Bytes

python

  • Ctrl + / -> single line comment
  • Alt + Shift + A - docstring or multiline comment
  • f'{v}{f} => f string
  • def ar(*ar) => args which work like list
  • string and tuplle are immutable
  • list -> []
  • tuple -> ()
  • set -> {}

Back To Top ↑