Python 3 - Episode 5 - What are strings

preview_player
Показать описание
In this video series we will cover Python 3. This video talk about the basics of strings. Strings are a complex data type so we will split this into two videos.

Python 3 youtube videos by Bryan Cairns

Intro: (0:00)
What are strings: (0:04)
How to make strings: (2:26)
Under the hood: (6:53)
Escape characters: (9:23)
Formatting avoid errors: (13:49)
Outro: (17:17)
Рекомендации по теме
Комментарии
Автор

At approximately 7 minutes, 20 seconds a claim is made that a string is a sequence of one or more characters. This should probably be understood as zero or more characters, since the empty string is a string.

IntuitiveLeap
Автор

When you printed your name |>print(first + ‘ ‘ + last)<| I was wondering if there was some pitfall for using |>print(first, last)<| ? They both respond the same way.

deltoncbaker