Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 305 Bytes

sample.md

File metadata and controls

25 lines (18 loc) · 305 Bytes

Introduction

REPL is a good way to learn PYTHON for beginners.

>>> 3 + 7
10
>>> 22 / 7
3.142857142857143
>>> 22 // 7
3

String methods

python comes loaded with awesome methods. Enjoy learning pYtHoN.

>>> 'python'.capitalize()
'Python'

>>> ' comma  '.strip()
'comma'