InterviewSolution
Saved Bookmarks
| 1. |
Write Python script to print the following pattern:11 31 3 51 3 5 7 |
|
Answer» for a in range (3,10,2) : for b in range (1, a, 2): print b, |
|