(amplitude_it)
| 155 | |
| 156 | print("Example 10") |
| 157 | def complex_wave_cascading(amplitude_it): |
| 158 | yield from wave_cascading(amplitude_it, 3) |
| 159 | yield from wave_cascading(amplitude_it, 4) |
| 160 | yield from wave_cascading(amplitude_it, 5) |
| 161 | |
| 162 | |
| 163 | print("Example 11") |
no test coverage detected