Python - String Manipulation

0.0(0)
studied byStudied by 0 people
GameKnowt Play
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/4

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

5 Terms

1
New cards

\n

newline

2
New cards

\t

tab

3
New cards

food - “Butter“
bug = “fly“
prettyBug = food + bug
print(prettyBug)

Butterfly

4
New cards

print(10 * “=“)

==========

5
New cards

school = “School“
print(school[0])

S