InterviewSolution
Saved Bookmarks
| 1. |
Write Python script to print the following pattern11 11 1 11 1 1 11 1 1 1 1 |
|
Answer» n = 1 for a in range (5) : print n n = n *10 + 1 |
|