w3resource

Python Program: Checking and handling ellipsis in variables

Python ellipsis (...) Data Type: Exercise-5 with Solution

Write a Python program that checks if a variable is equal to ... and prints a message if it matches.

Sample Solution:

Code:

# Define a list with ellipsis as a placeholder
nums = [1, 2, 3, 4, 5, 6, ...]  
for item in nums:
    if item is ...:
        print("Skipping...")
        continue
    print(f"Reading item: {item}")

Output:

Reading item: 1
Reading item: 2
Reading item: 3
Reading item: 4
Reading item: 5
Reading item: 6
Skipping...

The exercise above defines a list 'nums' with 'ellipsis' as a placeholder for unspecified items. In the loop, we check if the current item is 'ellipsis (...)', and if it is, we print "Skipping...". Otherwise, we process the item and print a message indicating that we are processing it. By using 'ellipsis' as a marker for skipped or unspecified items, we can iterate over an unknown number of items.

Flowchart:

Flowchart: Python Program: Checking and handling ellipsis in variables.

Previous: Python Program: Creating lists with gaps using ellipsis.
Next: Python: Creating multidimensional arrays with unspecified dimensions.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://198.211.115.131/python-exercises/extended-data-types/python-extended-data-types-index-ellipsis-exercise-5.php