blob: 67af37f4ace0d20d2b329e10a8599241667aa0c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
#+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)
* COMMENT
# [Puneeth: Where is the last slide?]
# [Puneeth: Why don't you use the template slides.org?]
|