EMT1111

You are currently viewing a revision titled "EMT1111 Lab Report Guide ", saved on November 3, 2013 at 8:19 am by Henry LaBoy
Title
EMT1111 Lab Report Guide
Content
Name                                      Date                         Class code EMT1111  section# Objective: introduction to Python Parts List / Equipment Theory/Math rules you followed:  "In this lab I used the principles of commutative property (a+b = b+a), associative property (like (a+b)+c = a+(b+c)  or   (ab)c = a(bc)   etc.), and distributive property (like  a(b+c) = ab + ac   etc.) Program itself Procedure: The steps taken were to open the software on my computer from the Programs menu (I used version 2 ; he/she used version 3) and started typing in the following code:   Tables Pictures, Diagrams, etc Results Conclusion     >>> print(C) Traceback (most recent call last): File "<pyshell#0>", line 1, in <module> print(C) NameError: name 'C' is not defined >>> C Traceback (most recent call last): File "<pyshell#1>", line 1, in <module> C NameError: name 'C' is not defined >>> C = 100 >>> C 100 >>> print(C) 100 >>>
Excerpt
Footnotes


Old New Date Created Author Actions
November 3, 2013 at 1:19 pm Henry LaBoy