Advertisement
skar

Chapter 2

May 18th, 2011
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.53 KB | None | 0 0
  1. #EXERCISE 2.1
  2.  
  3. >>> 5
  4.  
  5. 5
  6.  
  7. >>> x + 5
  8.  
  9. >>> x + 1
  10.  
  11. 6
  12.  
  13. #EXERCISE 2.2
  14.  
  15. name= raw_input("Please enter your Name: ");
  16. print "Hello "+name;
  17.  
  18. #EXERCISE 2.3
  19.  
  20. hours= raw_input("Enter Hours: ");
  21. rate= raw_input("Enter Rate: ");
  22. pay= round(hours*rate, 2);
  23. print "Pay: " + str(pay);
  24.  
  25. #EXERCISE 2.4
  26.  
  27. 1. width/2 = 8 int
  28. 2. width/2.0 = 8.5 float
  29. 3. height/3 = 4.0 float
  30. 4. 2+2*5= 11 int
  31.  
  32. #EXERCISE 2.5
  33.  
  34. cel= raw_input("Enter the temperature in Celsius: ");
  35. print "Temperature in Fahrenheit: " + str(((9*float(cel))/5)+32);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement