ViewVC Help
View File
|
Revision Log
|
Show Annotations
|
View Changeset
|
Root Listing
root
/
ns_dev
/
Python
/
learning
/
frstprg.py
Revision:
591
Committed:
Tue Nov 3 22:45:12 2015 UTC
(10 years, 4 months ago) by
nino.borges
Content type:
text/x-python
File size:
192 byte(s)
Log Message:
Moved dir out of main dir.
File Contents
#
Content
1
#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