...one snake to rule them all
bossing your machine to do stuffs you want to get done
Programming Language duh!!...
Guido Van Rossum -1991
192.168.1.39:8000
1. Open Your Browser and goto
2. Goto Softwares and Utilities
- If you have 2 GB or more RAM download
the x64 bit version i.e Sublime 3126x64 and Python amd64
- If not download x86_64(32) bit
version i.e Sublime 3126 and Python
You've successfully installed Snake(well vetted) on your system
- Goto run(win+r)
- Type cmd and hit enter
Command Prompt Opens
- Type python and hit enter
Python 3.6.0 (v3.6.0:41df79263a11, Dec 22 2016, 17:23:13)
[GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>>
This thing pops up(Interpreter)
>>> print("Hello world")
Hello world
>>> 2+3
5
>>> 5-3
2
>>> 5*3
15
>>> 22/7
3.142857142857143
>>> 3**2
9
>>> 5%3
2
CHEERS