ViewVC Help
View File
|
Revision Log
|
Show Annotations
|
View Changeset
|
Root Listing
root
/
ns_dev
/
Python
/
learning
/
frstprg.py
Revision:
8
Committed:
Sat May 5 04:21:19 2012 UTC
(13 years, 10 months ago) by
ninoborges
Content type:
text/x-python
Original Path:
Python/NinoCode/learning/frstprg.py
File size:
192 byte(s)
Log Message:
Initial Import
File Contents
#
User
Rev
Content
1
ninoborges
8
#program assignemts:
2
width = input("input the width please ")
3
hight = input("input the hight please ")
4
#this is where it does something:
5
area = width*hight
6
print "the area =",area
7
8
9