Given nums, use a for-else loop to search for the first negative number
A medium Python interview practice problem on DataDriven. Write and execute real python code with instant grading.
- Domain
- Python
- Difficulty
- medium
Problem
Given nums, use a for-else loop to search for the first negative number. If found, print 'Found: ' followed by the number and break. If no negative number exists, the else block should print 'All positive'.
Practice This Problem
Solve this Python problem with real code execution. DataDriven runs your Python code in a real environment and grades it automatically.