Files
freeCodeCamp/curriculum/challenges/english/07-scientific-computing-with-python/python-for-everybody/intermediate-strings.english.md
2020-05-27 13:19:16 +05:30

549 B

id, title, challengeType, isHidden, isRequired, videoId
id title challengeType isHidden isRequired videoId
5e7b9f070b6c005b0e76f061 Intermediate Strings 11 true true KgT_fYLXnyk

Description

More resources: - Exercise

Tests

question:
  text: 'What is the value of i in the following code?
<pre>word = "bananana"<br>
i = word.find("na")</pre>'
  answers:
    - 'nanana'
    - '2'
    - '3'
    - 'True'
    - 'na'
  solution: 2