Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Challenge: Logical Operators | Conditional Statements
Introduction to Python

Challenge: Logical OperatorsChallenge: Logical Operators

Tarea

You've been assigned a string variable t. Verify if both of these conditions are met:

  • The string's length is under 15 characters.
  • The count of the letter 'n' in this string exceeds 2.

Note

To count the number of occurrences of the letter 'n' in the string variable t, use the count method as follows: t.count('n').

You also have a numerical variable a. Determine if either of the following criteria is satisfied:

  • a is above 9475/37.
  • The remainder when dividing a by 14 is below 7.

¿Todo estuvo claro?

Sección 3. Capítulo 4
toggle bottom row
course content

Contenido del Curso

Introduction to Python

Challenge: Logical OperatorsChallenge: Logical Operators

Tarea

You've been assigned a string variable t. Verify if both of these conditions are met:

  • The string's length is under 15 characters.
  • The count of the letter 'n' in this string exceeds 2.

Note

To count the number of occurrences of the letter 'n' in the string variable t, use the count method as follows: t.count('n').

You also have a numerical variable a. Determine if either of the following criteria is satisfied:

  • a is above 9475/37.
  • The remainder when dividing a by 14 is below 7.

¿Todo estuvo claro?

Sección 3. Capítulo 4
toggle bottom row
some-alt