InterviewSolution
Saved Bookmarks
| 1. |
Application Based Questions 1. Alif wants to print his name 10 times on the output window. Which operator inpython will help him to get the desired output? |
|
Answer» for in and rangeExplanation:the SYNTAX is:for name in RANGE(10): PRINT("Alif")otherwise, a quicker method is print("Alif\n"*10)\n stands for NEW linePlz mark as brainliest if it helped!! |
|