(i)
| 43 | |
| 44 | |
| 45 | def cycle(i): |
| 46 | if i < 10: |
| 47 | return |
| 48 | else: |
| 49 | try: |
| 50 | tree(random.randint(1, i)) |
| 51 | tree(random.randint(1, i * 2)) |
| 52 | except: |
| 53 | print("An exception occured") |
| 54 | else: |
| 55 | print("No Exception occured") |
| 56 | print("cycle loop complete") |
| 57 | |
| 58 | |
| 59 | def fractal(i): |