/lab-manual/python-3.txt

http://foss-lab-manual.googlecode.com/ · Plain Text · 126 lines · 98 code · 28 blank · 0 comment · 0 complexity · ec8e996717b7e3cada78d656138d82ea MD5 · raw file

  1. === Python Lab III
  2. ==== Objective
  3. 1. Learn about modules, imports, listing module contents, standard
  4. modules.
  5. 2. Learn to build simple Python apps.
  6. ==== Required Reading
  7. * Section 'Modules' of the http://docs.python.org/tutorial/[Python
  8. Tutorial].
  9. ==== Modules
  10. 1. Write a module with the following contents, and name it `fibo.py`.
  11. +
  12. ------
  13. # Fibonacci numbers module
  14. def fib(n): # write Fibonacci series up to n
  15. a, b = 0, 1
  16. while b < n:
  17. print b,
  18. a, b = b, a+b
  19. def fib2(n): # return Fibonacci series up to n
  20. result = []
  21. a, b = 0, 1
  22. while b < n:
  23. result.append(b)
  24. a, b = b, a+b
  25. return result
  26. ------
  27. +
  28. 2. Import the module.
  29. 3. Access the function `fib` defined within the module.
  30. 4. Access and print the module's name.
  31. 5. Assign a local name for the function `fibo.fib`, and invoke the
  32. function using local name.
  33. 6. Import the function `fibo.fib` directly into the local name
  34. `fib`.
  35. ------
  36. >>> import fibo
  37. >>> fibo.fib(1000)
  38. 1 1 2 3 5 8 13 21 34 55 89 144 233 377 610 987
  39. >>> print fibo.__name__
  40. fibo
  41. >>> myfib = fibo.fib
  42. >>> myfib(500)
  43. 1 1 2 3 5 8 13 21 34 55 89 144 233 377
  44. >>> from fibo import fib
  45. >>> fib(500)
  46. 1 1 2 3 5 8 13 21 34 55 89 144 233 377
  47. >>>
  48. ------
  49. ==== Builtins and Standard Modules
  50. Perform the following operations at the Python interpreter prompt.
  51. 1. Import the `random` module.
  52. 2. List the contents of the `random` module.
  53. 3. Print the help information for `random.randint`.
  54. 4. Invoke the `random.randint` function.
  55. 5. List the builtin functions.
  56. 6. Create a variable and a function and list the contents of the
  57. local name space.
  58. ------
  59. >>> import random
  60. >>> dir(random)
  61. [...'randint', 'random', 'randrange'...]
  62. >>> help(random.randint)
  63. Help on method randint in module random:
  64. <BLANKLINE>
  65. randint(self, a, b) method of random.Random instance
  66. Return random integer in range [a, b], including both end points.
  67. <BLANKLINE>
  68. >>> random.randint(1, 99)
  69. 57
  70. >>> dir(__builtins__)
  71. ['ArithmeticError'...'zip']
  72. >>> def testfunc():
  73. ... pass
  74. ...
  75. >>> testvar = 10
  76. >>> dir()
  77. ['__builtins__'...'testfunc', 'testvar']
  78. >>>
  79. ------
  80. ==== Arithmetic Quiz
  81. In the Arithmetic Quiz program, the computer prints an arithmetic
  82. expression using the two 2 digit numbers (selected in random) and the
  83. operator + or - (selected in random). The user has to find out the
  84. value of the expression. Based on the user's input the computer
  85. updates the user's score. After 20 repetitions the computer prints the
  86. user's score. A sample run is shown below.
  87. -----
  88. 10 + 15 ? 25
  89. Correct!
  90. 21 + 33 ? 55
  91. Wrong!
  92. 31 - 10 ? 21
  93. Correct!
  94. ...
  95. ...
  96. Your score is 18/20.
  97. -----
  98. Write a Python script that implements the Arithmetic Quiz.