~dkuhlman/python-training-materials/Materials

« back to all changes in this revision

Viewing changes to Exercises_python/bonus_exercises.txt

  • Committer: Dave Kuhlman
  • Date: 2015-10-09 19:50:18 UTC
  • mfrom: (35.1.6 Materials)
  • Revision ID: dkuhlman@davekuhlman.org-20151009195018-8rfrdur2zxdjn5ds
Merge after training at Cisco 10/05/2015

Show diffs side-by-side

added added

removed removed

Lines of Context:
195
195
Usage:
196
196
    python simple_threads.py
197
197
Hints:
198
 
    Thread and Lock from the threading module in the Python standard library
 
198
    - Thread and Lock from the threading module in the Python standard library
 
199
    - time.sleep() from the time module in the Python standard library
199
200
Solution:
200
201
    Solutions/simple_threads.py
201
202