VOOZH about

URL: https://www.geeksforgeeks.org/python/output-python-program-set-15-loops/

⇱ Output of Python program | Set 15 (Loops) - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Output of Python program | Set 15 (Loops)

Last Updated : 6 Sep, 2024

Prerequisite -

Loops in Python

Predict the output of the following Python programs.

  • 1) What is the output of the following program? Output:
    ['ab', 'cd']
    Explanation: The function upper() does not modify a string in place, but it returns a new string which here isn’t being stored anywhere. So we will get our original list as output.
  • 2) What is the output of the following program?Output:
    No Output
    Explanation: The loop does not terminate as new elements are being added to the list in each iteration. So our program will stuck in infinite loop
  • 3) What is the output of the following program?Output:
    No Output
    Explanation: The program will give no output as there is an error in the code. In python while using expression there shouldn’t be a space between + and = in +=.
  • 4) What is the output of the following program?Output:
    Error!
    Explanation: Objects of type int are not iterable instead a list, dictionary or a tuple should be used.
  • 5) What is the output of the following program?
Output:
4
3
2
1
Explanation: Adding [::-1] beside your list reverses the list. So output will be the elements of original list but in reverse order.
Comment
Article Tags: