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

523 B

id, title, challengeType, isRequired, videoId
id title challengeType isRequired videoId
5e7b9f070b6c005b0e76f061 Strings B 11 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