INTRODUCTION TO PYTHON

Published on Slideshow
Static slideshow
Download PDF version
Download PDF version
Embed video
Share video
Ask about this video

Scene 1 (0s)

INTRODUCTION TO PYTHON.

Scene 2 (7s)

PRINT STATEMENT VARIABLE STRING DATA TYPES COMMENT MEANING OF SOME MATHEMATICAL SYMBOLS.

Scene 3 (15s)

PRINT STATEMENT Printing a statement means the output a statement which is caged in the print bracket “print( statement)” example print(“Hello world”) output Hello world note :”Hello world” is called string..

Scene 4 (27s)

variable This is a small container used to store data. example folder = (“1piece”) folder is the variable folder = (“1piece”) print(folder) output 1piece Note:quote was not added because it is a variable .which is the folder..

Scene 5 (41s)

STRING. A string is a text in a quotatation mark. It can be double quotation mark “ “ or single ‘’. EXAMPLE ‘JOHN’ OR “YUSSIF”.

Scene 6 (52s)

DATA TYPES.

Scene 7 (59s)

IN PYTHON * MEANS MULTIPLICATION + ADDITION ** EXPONENT / DIVISION - SUBTRACTION <,> != MEANS NOT EQUAL SO ! MEANS NOT.

Scene 8 (1m 9s)

THANK YOU.