- Популярные видео
- Авто
- Видео-блоги
- ДТП, аварии
- Для маленьких
- Еда, напитки
- Животные
- Закон и право
- Знаменитости
- Игры
- Искусство
- Комедии
- Красота, мода
- Кулинария, рецепты
- Люди
- Мото
- Музыка
- Мультфильмы
- Наука, технологии
- Новости
- Образование
- Политика
- Праздники
- Приколы
- Природа
- Происшествия
- Путешествия
- Развлечения
- Ржач
- Семья
- Сериалы
- Спорт
- Стиль жизни
- ТВ передачи
- Танцы
- Технологии
- Товары
- Ужасы
- Фильмы
- Шоу-бизнес
- Юмор
Strings पर Loop, Functions और Membership Check – सब कुछ एक Video में! ✅ @coding_Tuition n
क्या आप जानते हैं कि Python में string भी iterable होती है?
इसका मतलब है — आप for loop का उपयोग करके string के हर character को access कर सकते हैं! 😎
इस वीडियो (#8) में आप सीखेंगे:
✅ String पर for loop कैसे चलाएं? (Character-by-character traversal)
✅ Membership Operators: 'in' और 'not in' का use — कैसे check करें कि कोई letter/word string में है या नहीं?
✅ Useful String Functions: find(), index(), count(), startswith(), endswith() — real examples के साथ!
✅ Common Mistakes: Case sensitivity, space handling, और error tips
✅ Mini Practice Problem: जैसे — "किसी word में vowel count करना" या "username valid है या नहीं?"
ये video game development, text-based games, या user input validation सीखने वालों के लिए बहुत useful है!
अगर आप beginner हैं और Python सीख रहे हैं, तो ये video आपके concepts को crystal clear कर देगा।
LIKE 👍, SHARE 🔄, और SUBSCRIBE 🔔 करना न भूलें — ताकि आप Video #9 मिस न करें!
Here’s a detailed breakdown of the topics discussed:
String Basics Revisited (0:03-2:08)
Briefly reviews fundamental concepts like what a string is, indexing (positive and negative), and slicing.
Discusses string concatenation and repetition.
Useful String Methods and Functions (2:09-10:55)
len(): To get the length of a string (2:10).
upper() and lower(): For case conversion (2:11).
strip(): To remove leading/trailing whitespace (2:12-2:16).
replace(): To substitute parts of a string (2:30-2:34).
split(): To break a string into a list based on a delimiter (2:49-3:08).
find(): To locate the first occurrence of a substring (3:11-3:15).
String Formatting (f-strings): For embedding expressions inside string literals (3:17-3:28).
join(): To concatenate iterable elements with a specified string (3:33-4:40).
count(): To count occurrences of a substring within a string (4:44-5:22).
Checking Methods: isalpha(), isdigit(), isalnum(), startswith(), endswith() to check string content and patterns (7:07-10:49).
String Comparison and ASCII Values (10:58-25:00)
Explains how strings are compared using comparison operators
Details the ASCII concept (12:14-14:52), showing how characters are converted to numerical values for comparison.
Highlights the difference in ASCII values between uppercase and lowercase letters (14:13-14:52).
Provides examples of string comparisons, emphasizing that comparisons are done character by character based on ASCII values (15:53-24:50).
Looping Through Strings (26:35-40:02)
Demonstrates how to iterate over a string using for loops to access characters by index (26:35-29:32).
Shows a method to reverse a string using a for loop, contrasting it with simpler slicing methods (30:08-34:55).
Illustrates searching for specific characters within a string using a for loop and an if condition (35:09-37:50).
Presents string iteration using while loops, explaining the syntax and index management (37:57-39:51).
String Immutability (42:30-51:24)
Explains the concept of immutability in Python strings, meaning that once created, strings cannot be directly changed (43:05-44:25).
Demonstrates that attempting to modify a character in a string directly results in a TypeError (44:51-46:27).
Shows the correct way to "modify" a string by creating a new string using concatenation and slicing, rather than altering the original (46:53-48:34).
Further clarifies immutability by explaining that when a string appears to be modified, a new string object is actually created in memory (50:26-51:24).
0:00 Introduction to Strings
0:10 Review of String Concepts
0:28 Importance of Indexing in Strings
1:27 Understanding String Slicing
2:04 String Concatenation and Repetition
2:09 Exploring String Methods: Length, Case, Strip
2:48 String Methods: Replace, Split, Find
3:17 String Formatting with f-strings
3:30 The join() String Method
4:42 The count() String Method
5:23 Checking Methods in Strings
7:05 Advanced String Checking Methods: isalpha, isdigit, isalnum
8:27 startswith() and endswith() Methods
10:57 String Comparison Operators
12:12 Understanding ASCII Values for Comparison
14:39 ASCII Values: Capital vs. Small Letters
15:43 Examples of String Comparison with ASCII
17:34 Practice Problems: String Comparison
20:50 Short vs. Long String Comparison
23:02 not equals Operator in String Comparison
25:05 Loop Through Strings: Basics
26:34 Using for Loop for Character Traversal
28:01 Printing Characters with Their Index
29:40 Introduction to Vowel Counting Problem (skipped)
30:23 Reversing a String with a for Loop
34:02 Detailed Explanation of String Reversal Logic
34:50 Finding a Character in a String using for Loop
37:54 Using while Loop for String Traversal
40:27 Summary of String Concepts Covered
42:29 Deep Dive into String Immutability
43:05 What is Immutability?
44:03 Attempting to Change a String Directly (Error Demonstration)
46:42 Correct Way to "Modify" a String (Creating a New String)
49:09 Understanding New String Creation in Memory
Видео Strings पर Loop, Functions और Membership Check – सब कुछ एक Video में! ✅ @coding_Tuition n канала Coding Tuition
इसका मतलब है — आप for loop का उपयोग करके string के हर character को access कर सकते हैं! 😎
इस वीडियो (#8) में आप सीखेंगे:
✅ String पर for loop कैसे चलाएं? (Character-by-character traversal)
✅ Membership Operators: 'in' और 'not in' का use — कैसे check करें कि कोई letter/word string में है या नहीं?
✅ Useful String Functions: find(), index(), count(), startswith(), endswith() — real examples के साथ!
✅ Common Mistakes: Case sensitivity, space handling, और error tips
✅ Mini Practice Problem: जैसे — "किसी word में vowel count करना" या "username valid है या नहीं?"
ये video game development, text-based games, या user input validation सीखने वालों के लिए बहुत useful है!
अगर आप beginner हैं और Python सीख रहे हैं, तो ये video आपके concepts को crystal clear कर देगा।
LIKE 👍, SHARE 🔄, और SUBSCRIBE 🔔 करना न भूलें — ताकि आप Video #9 मिस न करें!
Here’s a detailed breakdown of the topics discussed:
String Basics Revisited (0:03-2:08)
Briefly reviews fundamental concepts like what a string is, indexing (positive and negative), and slicing.
Discusses string concatenation and repetition.
Useful String Methods and Functions (2:09-10:55)
len(): To get the length of a string (2:10).
upper() and lower(): For case conversion (2:11).
strip(): To remove leading/trailing whitespace (2:12-2:16).
replace(): To substitute parts of a string (2:30-2:34).
split(): To break a string into a list based on a delimiter (2:49-3:08).
find(): To locate the first occurrence of a substring (3:11-3:15).
String Formatting (f-strings): For embedding expressions inside string literals (3:17-3:28).
join(): To concatenate iterable elements with a specified string (3:33-4:40).
count(): To count occurrences of a substring within a string (4:44-5:22).
Checking Methods: isalpha(), isdigit(), isalnum(), startswith(), endswith() to check string content and patterns (7:07-10:49).
String Comparison and ASCII Values (10:58-25:00)
Explains how strings are compared using comparison operators
Details the ASCII concept (12:14-14:52), showing how characters are converted to numerical values for comparison.
Highlights the difference in ASCII values between uppercase and lowercase letters (14:13-14:52).
Provides examples of string comparisons, emphasizing that comparisons are done character by character based on ASCII values (15:53-24:50).
Looping Through Strings (26:35-40:02)
Demonstrates how to iterate over a string using for loops to access characters by index (26:35-29:32).
Shows a method to reverse a string using a for loop, contrasting it with simpler slicing methods (30:08-34:55).
Illustrates searching for specific characters within a string using a for loop and an if condition (35:09-37:50).
Presents string iteration using while loops, explaining the syntax and index management (37:57-39:51).
String Immutability (42:30-51:24)
Explains the concept of immutability in Python strings, meaning that once created, strings cannot be directly changed (43:05-44:25).
Demonstrates that attempting to modify a character in a string directly results in a TypeError (44:51-46:27).
Shows the correct way to "modify" a string by creating a new string using concatenation and slicing, rather than altering the original (46:53-48:34).
Further clarifies immutability by explaining that when a string appears to be modified, a new string object is actually created in memory (50:26-51:24).
0:00 Introduction to Strings
0:10 Review of String Concepts
0:28 Importance of Indexing in Strings
1:27 Understanding String Slicing
2:04 String Concatenation and Repetition
2:09 Exploring String Methods: Length, Case, Strip
2:48 String Methods: Replace, Split, Find
3:17 String Formatting with f-strings
3:30 The join() String Method
4:42 The count() String Method
5:23 Checking Methods in Strings
7:05 Advanced String Checking Methods: isalpha, isdigit, isalnum
8:27 startswith() and endswith() Methods
10:57 String Comparison Operators
12:12 Understanding ASCII Values for Comparison
14:39 ASCII Values: Capital vs. Small Letters
15:43 Examples of String Comparison with ASCII
17:34 Practice Problems: String Comparison
20:50 Short vs. Long String Comparison
23:02 not equals Operator in String Comparison
25:05 Loop Through Strings: Basics
26:34 Using for Loop for Character Traversal
28:01 Printing Characters with Their Index
29:40 Introduction to Vowel Counting Problem (skipped)
30:23 Reversing a String with a for Loop
34:02 Detailed Explanation of String Reversal Logic
34:50 Finding a Character in a String using for Loop
37:54 Using while Loop for String Traversal
40:27 Summary of String Concepts Covered
42:29 Deep Dive into String Immutability
43:05 What is Immutability?
44:03 Attempting to Change a String Directly (Error Demonstration)
46:42 Correct Way to "Modify" a String (Creating a New String)
49:09 Understanding New String Creation in Memory
Видео Strings पर Loop, Functions और Membership Check – सब कुछ एक Video में! ✅ @coding_Tuition n канала Coding Tuition
coding by abhishek maurya coding tution python strings for loop in string python membership operator in python in operator python string functions in python python tutorial hinglish python for beginners string traversal python string methods find in string python python programming learn python python course string indexing python string practice tech education coding in hinglish python for game dev string contains python not in operator
Комментарии отсутствуют
Информация о видео
31 января 2026 г. 12:27:10
01:34:24
Другие видео канала




















