Started work on day2 session 1.
authorShantanu <shantanu@fossee.in>
Tue, 20 Apr 2010 11:53:27 +0530
changeset 91 eb15f55e4689
parent 90 314a711c042f
child 92 fa26bdda8f32
Started work on day2 session 1.
data-types.org
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/data-types.org	Tue Apr 20 11:53:27 2010 +0530
@@ -0,0 +1,37 @@
+* Data Types
+*** Outline
+***** Introduction
+******* What are we going to do?
+******* How are we going to do?
+******* Arsenal Required
+********* None
+*** Script
+    Welcome friends. 
+    
+    In this tutorial we shall look at data types available in Python and 
+    how to perform simple Input and Output operations. 
+    for dealing with 'Numbers' we have: int, float, complex
+    'Strings' are there for handling Text content.
+    For conditional statements 'Booleans' are supported.
+    
+    Lets start by covering one by one, firstly 'numbers'
+    All 'whole numbers' irrespective of how big they are, are of 'int'
+    data type
+    Lets get started by opening IPython interpreter. Now we will create
+    some variables say:
+    a = 13
+    print a
+
+    To check the data type of any variable Python provides 'type' function
+    type(a)
+    
+    b = 999999999999
+    print b
+    
+    And 
+
+    Thus we come to the end of this tutorial on introduction of Data types in
+    Python. In this tutorial we have learnt what are supported data types, 
+    supported operations and performing simple IO operations in Python.
+
+*** Notes