MIT_OCW

Lecture 4: Machine Interpretation of a Program   [youtube]http://youtu.be/Mx0uXIBD-yA[/youtube]

Continue reading about Lec 4 | MIT 6.00SC Introduction to Computer Science and Programming, Spring 2011

Lecture 3: Problem Solving [youtube]http://youtu.be/ggxY20cXql8[/youtube]

Continue reading about Lec 3 | MIT 6.00SC Introduction to Computer Science and Programming, Spring 2011

Lecture 2: Core Elements of a Program [youtube]http://youtu.be/SLvTCHhu5SE[/youtube]

Continue reading about Lec 2 | MIT 6.00SC Introduction to Computer Science and Programming, Spring 2011

Lecture 1: Introduction to 6.00 [youtube]http://youtu.be/bX3jvD7XFPs[/youtube]

Continue reading about Lec 1 | MIT 6.00SC Introduction to Computer Science and Programming, Spring 2011

7: Lists and Mutability, Dictionaries, Introduction to Efficiency import math #Get baseinputOK = Falsewhile not inputOK:    base = input(‘Enter base: ‘)    if type(base) == type(1.0) : inputOK = True    else: print(‘Error. Base must be floating point number.’) #Get HeightinputOK = Falsewhile not inputOK:    height = input(‘Enter height: ‘)    if type(height) […]

Continue reading about Lec 7 | MIT 6.00 Introduction to Computer Science and Programming, Fall 2008