InterviewSolution
Saved Bookmarks
| 1. |
What will be the output of the following code:(\n means new line) for i in range(2,7,2): print(i*'@')a) @\[email protected]@\[email protected]b) \[email protected]@\[email protected]@c) @\[email protected]\[email protected]d) None of the Above |
|
Answer» correct answer is Explanation: i don't know I think d) NONE of the above no c) |
|