diff options
Diffstat (limited to 'basic-data-type/slides.org')
-rw-r--r-- | basic-data-type/slides.org | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/basic-data-type/slides.org b/basic-data-type/slides.org new file mode 100644 index 0000000..2d12dbd --- /dev/null +++ b/basic-data-type/slides.org @@ -0,0 +1,72 @@ +#+LaTeX_CLASS: beamer +#+LaTeX_CLASS_OPTIONS: [presentation] +#+BEAMER_FRAME_LEVEL: 1 + +#+BEAMER_HEADER_EXTRA: \usetheme{Warsaw}\useoutertheme{infolines}\usecolortheme{default}\setbeamercovered{transparent} +#+COLUMNS: %45ITEM %10BEAMER_env(Env) %10BEAMER_envargs(Env Args) %4BEAMER_col(Col) %8BEAMER_extra(Extra) +#+PROPERTY: BEAMER_col_ALL 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1.0 :ETC +#+OPTIONS: H:5 num:t toc:nil \n:nil @:t ::t |:t ^:t -:t f:t *:t <:t + +#+TITLE: Plotting Data +#+AUTHOR: FOSSEE +#+DATE: 2010-09-14 Tue +#+EMAIL: info@fossee.in + +# \author[FOSSEE] {FOSSEE} + +# \institute[IIT Bombay] {Department of Aerospace Engineering\\IIT Bombay} +# \date{} + +* Tutorial Plan +** Datatypes in Python +** Operators in Python + +* Numbers +** Integers +** Float +** Complex + +* Boolean +** True +** False + +* Sequence Data types +** Data in Sequence +** Accessed using Index +*** list +*** String +*** Tuple + +* All are Strings + +** k='Single quote' +** l="Double quote contain's single quote" +** m='''"Contain's both"''' + +* Summary +** a=73 +** b=3.14 +** c=3+4j + +* Summary Contd. + +** t=True +** f=False +** t and f + +* Summary Contd. +** l= [2,1,4,3] +** s='hello' +** tu=(1,2,3,4) + +* Summary Contd. +** tu[-1] +** s[1:-1] + +* Summary Contd. + +** Sorted(l) +** reversed(s) + + + |