Skip to content

Latest commit

 

History

History
17 lines (15 loc) · 535 Bytes

Python.md

File metadata and controls

17 lines (15 loc) · 535 Bytes
title description
Python
Python basics



 HOME 

Because Python 3 is bullshit and i can't remember everything so i have to write down things i've learned :).

Table of contents

1. Python basics

1.1 Reserved keyword

1.2 Variables type

  • 4 data-types: interger, string, boolean, float.
  • Multiple declaration: name, age, height, alive = Johnny, 21, 169.5, True.