Files
freeCodeCamp/curriculum/challenges/german/07-scientific-computing-with-python/python-for-everybody/intermediate-strings.md
2022-08-19 20:53:29 +02:00

54 lines
589 B
Markdown

---
id: 5e7b9f070b6c005b0e76f061
title: Fortgeschrittene Strings
challengeType: 11
videoId: KgT_fYLXnyk
bilibiliIds:
aid: 291983121
bvid: BV1Zf4y157yG
cid: 376394116
dashedName: intermediate-strings
---
# --description--
Weitere Ressourcen:
\- <a href="https://www.youtube.com/watch?v=1bSqHot-KwE" target="_blank" rel="noopener noreferrer nofollow">Aufgabe</a>
# --question--
## --text--
Wie lautet der Wert von i in dem folgenden Code?
```python
word = "bananana"
i = word.find("na")
```
## --answers--
nanana
---
2
---
3
---
True
---
na
## --video-solution--
2