Your question is Python Script for Even Numbers. Start with the requirements on the right.
Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.
A Vectorworks worksheet or Marionette workflow may provide object metadata as one text string. Write a function that extracts every integer from the string and returns the sum of the even integers.
An integer is an optional + or - sign followed by one or more decimal digits. Integers may be separated by spaces, punctuation, or words. A number is included when its numeric value is divisible by 2. Return 0 when the string contains no integers or no even integers.
Implement sum_even_numbers(text).
text, a non-null Python string containing zero or more signed integer tokens.-8 and +12 are valid integers. Decimal values are not part of the input format.def sum_even_numbers(text):