Revision 1 - We can use ' ' ' to print 2 or more lines 2 - we can use escape sequence character \" to print ( " ) in string 3 - Programming language count numbers from 0 , for example: Name = "Arsh" Print (Name[0]) ,then output is A Print (Name[1]) ,then output is R Print (Name[2]) ,then output is S Print (Name[3]) ,then output is H 4 - We can Also use LOOP For Example , code - for character in Name: Print (character) Output : A R S H
00:02 Exploring additional ways of creating strings in Python. 01:22 Strings are sequences of textual data, created using double or single quotes. 02:46 Using escape sequence characters to include double quotes in a string 04:05 Python string literals and error handling 05:40 Python strings can be easily manipulated and accessed using indexing. 07:07 Strings in Python are like an array of characters, representing a collection of items. 08:41 Using for loops with strings in Python 10:11 Loops help in processing characters of a string one by one.
I never Skip the Video ads , i am not paying him , but i know if i skip the ads he will gets less amount , so i always keep the ads running so that i can support him . thx man for nice content
00:02 Exploring additional ways of creating strings in Python. 01:22 Strings are sequences of textual data, created using double or single quotes. 02:46 Using escape sequence characters to include double quotes in a string 04:05 Python string literals and error handling 05:40 Python strings can be easily manipulated and accessed using indexing. 07:07 Strings in Python are like an array of characters, representing a collection of items. 08:41 Using for loops with strings in Python 10:11 Loops help in processing characters of a string one by one. Crafted by Merlin AI.
Day -11 Done Harry bhai . 11:50 pm PST . Stay blessed Harry bhai . You're nothing but a man who is an ispiration for many CS students . Love and Greetings from Pakistan for you Sir Haris Ali Khan
@@suvrajitpanda3797 are bhai wo course 3 year purana hai issiliye naya course banane ke liya bol rha mai, waise me wahi course se C sikh rha hu, abi video no 60 pr hu
@@aadityarraj usko hi follow karo bhai 2 yr ka hua to kya Hua phir C pe new vdo phir kya aaega Sab to same 2 same he na kuch changes nhi hua he like for loop,if else ,and c main project itna nhi hota he to may be new vdo nhi aaega
I fell in love with the way you teach, class 11/12 me padha tha python pr sb uppr se gya, today m studying again after years... and man you are genious..
Hey Harry, i wrote my first code apart from Print("Hello world") after watching your day 11 video - here is my code - string1="Hello" a=input("Enter a charatcter from 'Hello' for which you want to find the index: ") index_number = [] for index, char in enumerate(string1): if char == a: index_number.append(index) if index_number: print(f"The index of the character '{a}' is ", index_number) else: print(f"{a} is not found in the string - 'Hello'") i just want to thanks you for teaching so nicely that even i wrote a code :) keep up the good work!
@@Priyangshu_Majumder_18 I didn't know honestly earlier , but after seeing your comment I did google - & it is also called same in C - EOL ( end of line ) , EOF ( End of File ) ...
Bro really appreciate your work, but it's a request to you, if you may make a free course of data science or data analytics, for job perspective, please make it, i really need it, i request to you only because your way of teaching is different and unique from others and intresting apart from this i gain lots of knowledge from you. You know the upcoming era is for data science and new opportunities open for youths, if you made a course on that it would help and save upcoming youths life, also they become self dependent in their early 20s. Thank you for everything you give or do for today's generation.❤️
i was thinking this how to completing daily one video with proper concept,subtitle, and posting possible withing 24 hour ... really am gratefull of harry bhai they are best teacher and friend in coding industry for all indian
I am from commerce background.. but I am joining this series and it's help me alotttt..!! To understand everything from being with different backgrounds.. thanks alotttt.. ❤❤ and I will learn everything from you😊❤
Sir ek question hai Hum user se ek string input lenge and fir uss string ke sare character word by word or alphabet way mai print hoo Like thia Input amazon Output is a=2 n=1 O=1 Z=1 m=1
print("Hello Friends") Name=input("What is your name? :") print("Hello,",Name+'!',"Do you wanna! calculate two numbers?") A = int(input("Type your first number: ")) B = int(input("Type your second number: ")) opr = str(input("Type your operator ie '+','-','*','/', 'Quar','Reminder', :")) if opr == "+": print('''Hello, '''" ",Name[0],''' ''',Name[1],''' ''',Name[2],''' ''',Name[3],''' '''"Your answer is : ", A + B) if opr == "-": print('''Hello, '''" ",Name[0],''' ''',Name[1],''' ''',Name[2],''' ''',Name[3],''' '''"Your answer is : ", A - B) if opr == "*": print('''Hello, '''"",Name[0],''' ''',Name[1],''' ''',Name[2],''' ''',Name[3],''' '''"Your answer is : ", A * B) if opr == "/": print('''Hello, '''"",Name[0],''' ''',Name[1],''' ''',Name[2],''' ''',Name[3],''' '''"Your answer is : ", A / B) if opr == "Quar": print('''Hello, '''" ",Name[0],''' ''',Name[1],''' ''',Name[2],''' ''',Name[3],''' '''"Your answer is : ", A // B) if opr == "Reminder": print('''Hello, '''" ",Name[0],''' ''',Name[1],''' ''',Name[2],''' ''',Name[3],''' '''"Your answer is : ", A % B) print(''' '''"The end")
Day3 of #100DaysOfCode. In this video 11, I learned about strings in Python, which are text sequences enclosed in single or double quotes. I discovered how to create multiline strings using triple quotes, access characters with indices, and iterate through a string's characters using a for loop to perform tasks or print them. Thank You Harry Bhaiya.
hey bro i am on the day 11 of my 100 days challenge on the day 1 and is motivated to complete the 30 videos in just oone sitting and bro you and your videos are really awesome and i am not just skipping the videos but i am grasping all the knowledge and is till here thank you bhai a lot.
In this video I learned about strings , what is concatenation of string , how to write multi line strings by using ' ' ' then how can we access each element of the string also known as indexing then loop through the entire string and printing all the characters sequentially and in yesterday's video I got to know about input function and typecasting
Ab to ye series kisi web series ki tarah hoti Jaa Rahi hai...aisa lgta ki abhi shaam ko episode aane hi wala hai ....much love Harry bhai ❣️ jai shree ram 🚩
After 1 year, day 1 = 10 videos till now, try learning data science, so a long road ahead, just want to praise your teaching method its really great and understandable in ground zero level, so like the ones who said ye to basic h aata hi hooga .
5:27 How is the st variable used in this working without the print function and how is it different from the above 3 variables, why are they not printed?
a=input('Enter your first number: ') b=input('Enter your second number: ') print('Addition',int(a)+int(b)) print('Substraction',int(a)-int(b)) print('Multiplication',int(a)*int(b)) print('Division',int(a)/int(b)) print('Floor',int(a)//int(b))
a = input("Enter a name i will tell it all index!") print("the limit is upto 7 index so if the error come then only input a word which have 7 index minimum and maximum") print(a[0]) print(a[1]) print(a[2]) print(a[3]) print(a[4]) print(a[5]) print(a[6])
Harry vai ap k ';web development'' course & react course maine kya & abhi python bhi sikh raha hu lekin ek chees main nahi janta ki kaise ab job k liye apply karu.konsi website & process. Please make a fullvideo of how to make the perfect cv and where to apply .what is the correct way????
Revision
1 - We can use ' ' ' to print 2 or more lines
2 - we can use escape sequence character \" to print ( " ) in string
3 - Programming language count numbers from 0 , for example:
Name = "Arsh"
Print (Name[0]) ,then output is A
Print (Name[1]) ,then output is R
Print (Name[2]) ,then output is S
Print (Name[3]) ,then output is H
4 - We can Also use LOOP
For Example , code - for character in Name:
Print (character)
Output : A
R
S
H
hello
Bro I think forward / nhi back \ use krte hain as a escape sequence character.
@@kidsgame9450 back is correct
Thanks for revision
Nice brother 😊
Code Backup Repository: github.com/CodeWithHarry/100-days-of-code-youtube
Bhai sare video wapas banao na iski tarah mtlb java, c, c++
Day 6
Apne """",,,,,""""" se coment bataya tha dono me kya difference hai
00:02 Exploring additional ways of creating strings in Python.
01:22 Strings are sequences of textual data, created using double or single quotes.
02:46 Using escape sequence characters to include double quotes in a string
04:05 Python string literals and error handling
05:40 Python strings can be easily manipulated and accessed using indexing.
07:07 Strings in Python are like an array of characters, representing a collection of items.
08:41 Using for loops with strings in Python
10:11 Loops help in processing characters of a string one by one.
I never Skip the Video ads , i am not paying him , but i know if i skip the ads he will gets less amount , so i always keep the ads running so that i can support him . thx man for nice content
Nice idea
😶🌫
You are a real one for that :)
You love wasting time. RUclips will love you.
bruh just buy premium
Brother harry is doing well,
I saw the time in his desktop,
it's 2-39 AM..
GREAT WORK...
Excellent
Brother ye subbah ka time Tahujud ka hoota hee is time insaan ziada fresh hoota hee aur kaam bhut ache SE kaar Patta hee
00:02 Exploring additional ways of creating strings in Python.
01:22 Strings are sequences of textual data, created using double or single quotes.
02:46 Using escape sequence characters to include double quotes in a string
04:05 Python string literals and error handling
05:40 Python strings can be easily manipulated and accessed using indexing.
07:07 Strings in Python are like an array of characters, representing a collection of items.
08:41 Using for loops with strings in Python
10:11 Loops help in processing characters of a string one by one.
Crafted by Merlin AI.
Day -11 Done Harry bhai .
11:50 pm PST .
Stay blessed Harry bhai . You're nothing but a man who is an ispiration for many CS students .
Love and Greetings from Pakistan for you Sir Haris Ali Khan
@@Dharmaik_Sanatanidimag chahiye
@@Dharmaik_Sanataniidhar hindu muslim karne aa gya
@@Sfarhan05nahi india Pakistan karne
@@Dharmaik_Sanatani BKL
@@Dharmaik_Sanatani woh banda seekhane aata hai , thoda Profesional
raho bhai ! 😶
day #11 completed
hope till the end i can get as much knowledge for the job
Harry bhai you are the gem of our Indian coding Industry ❤❤
❤❤
Anyone noticed how hard harry bhai is working for us :
1. Making video at 2:40am in the night on Dec 8
2.Adding English subtitles in the video
3. Attractive video editing
4. Replit notes
5.auctual good Python Tutorial
6.checking insta
team rehti hai bhai
Petition to make 100 days of code for C and C++
also JavaScript
@@suvrajitpanda3797 are bhai wo course 3 year purana hai issiliye naya course banane ke liya bol rha mai, waise me wahi course se C sikh rha hu, abi video no 60 pr hu
@@aadityarraj usko hi follow karo bhai 2 yr ka hua to kya Hua phir
C pe new vdo phir kya aaega
Sab to same 2 same he na kuch changes nhi hua he like for loop,if else ,and c main project itna nhi hota he to may be new vdo nhi aaega
@@suvrajitpanda3797 sahi bola bhai but python ke bhi to course tha na pehle se wo bhi 121 videos ka
issiliye bola
Pehle python sikhle
Waiting for this whole day
And you finally got it at night
Gand Mara 😂
I fell in love with the way you teach, class 11/12 me padha tha python pr sb uppr se gya, today m studying again after years... and man you are genious..
Love you Harry Sir❤❤❤❤❤❤.Best python tutorial in the world. I am learning all the programming languages from you.
I liked your videos the content is good keep it up .
#conceptualpython
@@bhumisharma679 thanks
I have learned Python from your old Python playlist... It helped me a lot❤️
Love from Kolkata sir❤️
Hey Harry, i wrote my first code apart from Print("Hello world") after watching your day 11 video - here is my code -
string1="Hello"
a=input("Enter a charatcter from 'Hello' for which you want to find the index: ")
index_number = []
for index, char in enumerate(string1):
if char == a:
index_number.append(index)
if index_number:
print(f"The index of the character '{a}' is ", index_number)
else:
print(f"{a} is not found in the string - 'Hello'")
i just want to thanks you for teaching so nicely that even i wrote a code :)
keep up the good work!
Day '11' Present sir , "today I'm learn (EOL) and using character"
Thankyou sir
This course is awesome 🔥🔥
Harry bhai u are the best teacher!
This free videos worth more than any paid course.
Oooo Bhai aik achi cheez Muft me mil rahi he to tujhe kia masla he?
Agar esa he to tu Pese de dia karna Bhai
THIS COURSE IS AMAZING
hi Harry bhai! I am studying python in class 8 and it is being easy with you. Concepts are crystal clear .Thanks
Hmare programming teacher (bhaiya),wo bhi ground to earth☺☺
print("Love You Bhaiya")
Day 11 Present Sir , I learnt a new thing from today's video which is the full form of EOL ( End of line ) .. Thanks Harry Bhai 🔥🔥🙌🙌
Do you know what it's called in C language??
@@Priyangshu_Majumder_18 I didn't know honestly earlier , but after seeing your comment I did google - & it is also called same in C - EOL ( end of line ) , EOF ( End of File ) ...
Bro you deserve all the subscribers. Keep it up❤ 💯
Bro really appreciate your work, but it's a request to you, if you may make a free course of data science or data analytics, for job perspective, please make it, i really need it, i request to you only because your way of teaching is different and unique from others and intresting apart from this i gain lots of knowledge from you. You know the upcoming era is for data science and new opportunities open for youths, if you made a course on that it would help and save upcoming youths life, also they become self dependent in their early 20s. Thank you for everything you give or do for today's generation.❤️
kitna maska lagaya bc
i was thinking this how to completing daily one video with proper concept,subtitle, and posting possible withing 24 hour ... really am gratefull of harry bhai they are best teacher and friend in coding industry for all indian
Bhut accha lag rha h bhaiya.
Tarif me or kya bolu shabt ni hai.
Just Best ❤️❤️❤️❤️❤️❤️❤️❤️
I am from commerce background.. but I am joining this series and it's help me alotttt..!! To understand everything from being with different backgrounds.. thanks alotttt.. ❤❤ and I will learn everything from you😊❤
pagal
Thumbnail ki photo bdi hi khatrnaak hai 🔥😎 Harry Bhyia ki 🤣
I have learnt a lot from you sir!
Keep Growing ❤️❤️
Literally true
Sir ek question hai
Hum user se ek string input lenge and fir uss string ke sare character word by word or alphabet way mai print hoo
Like thia
Input amazon
Output is
a=2
n=1
O=1
Z=1
m=1
this course is really very amazing n intrested also ......I keep waiting for the next video thank you so much @Harry bhai ❣
Sir, aap ne bohot achhe se karvaya, thank you so much 😊🙏
Kis kis. Ke pass computer / laptop nhi hai
damn
Mere pss
Mere pass
Gareeb
Bhai mobile python coding ke apps he
print("Hello Friends")
Name=input("What is your name? :")
print("Hello,",Name+'!',"Do you wanna! calculate two numbers?")
A = int(input("Type your first number: "))
B = int(input("Type your second number: "))
opr = str(input("Type your operator ie '+','-','*','/', 'Quar','Reminder', :"))
if opr == "+": print('''Hello,
'''" ",Name[0],'''
''',Name[1],'''
''',Name[2],'''
''',Name[3],'''
'''"Your answer is : ", A + B)
if opr == "-": print('''Hello,
'''" ",Name[0],'''
''',Name[1],'''
''',Name[2],'''
''',Name[3],'''
'''"Your answer is : ", A - B)
if opr == "*": print('''Hello,
'''"",Name[0],'''
''',Name[1],'''
''',Name[2],'''
''',Name[3],'''
'''"Your answer is : ", A * B)
if opr == "/": print('''Hello,
'''"",Name[0],'''
''',Name[1],'''
''',Name[2],'''
''',Name[3],'''
'''"Your answer is : ", A / B)
if opr == "Quar": print('''Hello,
'''" ",Name[0],'''
''',Name[1],'''
''',Name[2],'''
''',Name[3],'''
'''"Your answer is : ", A // B)
if opr == "Reminder": print('''Hello,
'''" ",Name[0],'''
''',Name[1],'''
''',Name[2],'''
''',Name[3],'''
'''"Your answer is : ", A % B)
print('''
'''"The end")
Present Bhaiya #day11😀
literally I'm addicted on this intro
😍😍
Waiting of day 50
For good level programming☺
bro, I am vaibhav ..... That animation in the This is ultimate course wala is toooooo good .....I never skip it
Love u harry bhai always waiting for ur content to upload,❤️❤️
Watched 💫
Thanks 😊
Day 3
Day3 of #100DaysOfCode. In this video 11, I learned about strings in Python, which are text sequences enclosed in single or double quotes. I discovered how to create multiline strings using triple quotes, access characters with indices, and iterate through a string's characters using a for loop to perform tasks or print them.
Thank You Harry Bhaiya.
yeah nobody asked you
#Harrybhai is the best code Teacher 😎
Haary Bhai 100daysofcode ke baad full stack web development ke videos lao
hey bro i am on the day 11 of my 100 days challenge on the day 1 and is motivated to complete the 30 videos in just oone sitting and bro you and your videos are really awesome and i am not just skipping the videos but i am grasping all the knowledge and is till here thank you bhai a lot.
First view felling fun 100 days of code
Aree waah Harry bhai Day 11 😆
Hello sir Koi bhi course start bilkul lession by lession kare plzzz
In this video I learned about strings , what is concatenation of string , how to write multi line strings by using ' ' ' then how can we access each element of the string also known as indexing then loop through the entire string and printing all the characters sequentially and in yesterday's video I got to know about input function and typecasting
#HarryBhai 😃
Learning something new from the old materials...!!
Harry sir aap replit me explanation and definition with examples mat Diya Karo kyuki access karne me problem hota hai
I am present!
bro and with full potential we will finish this course in the next two months!
Day 12 course also revealed 😉
Yeah string Methods
youtube.com/@multilearn2204?sub_confirmation=1
.__dict__)
File "", line 14, in
NameError: name 'character' is not defined isko phone mai kasa thik karna hai samjha nai raha hai plzz help
Thank you so much sir..🙏😊
Always appreciate your hard work
Hey... how'd u put the pic of Harry 🙂😳🙄
It gets free when you join the channel.
Wait... channel join karne se kya facilities milti hai ....?
2024 button❤
Ab to ye series kisi web series ki tarah hoti Jaa Rahi hai...aisa lgta ki abhi shaam ko episode aane hi wala hai ....much love Harry bhai ❣️ jai shree ram 🚩
He is the best 🙂❤️
Thank you bhaiya for such a great python series😃😃😃
Bro you deserve all the subscribers. Keep it up❤
Bhai bohot he sahi padate ho aap...
U r great man
Love u from 2019👋👋
Harry bhai did you made this video during late night 👍👍👍👍👍SALUTE MAN
harry bhai apne to hila diya....
thanks and present you are just making it much easier you are awesome i will not skip the ads ny longer
After 1 year, day 1 = 10 videos till now, try learning data science, so a long road ahead, just want to praise your teaching method its really great and understandable in ground zero level, so like the ones who said ye to basic h aata hi hooga .
🙌🙌 Best teacher I found. Thankyou 🙌
Thanks harry bhaiya🤗
Harry sir you are my best teacher of my life...
Love you Harry bhaiii!!! ❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤
Good evening Harry bhaiya 🤗🤗
best teacher ever for coding
5:27 How is the st variable used in this working without the print function and how is it different from the above 3 variables, why are they not printed?
Thank you harry bhai ap rat ko time likal ke
Hamare liye video Banate ho
thank you
Yes I learn JavaScript course of your channel
Yes bro..... I'm here....🔥🔥
review:harry bhai ap great ho i complete day 33 i feel i learn my best thank's alotttttt harry bhai
Thanku sir♥️♥️♥️
thanks for this lecture😊
Java ke baad python bhaut assan ho jata ha Harry bhaiya
ur videos always help me in learning languages u r aussome
Thanks
Thank u very much for this course Harry bhaiya 😊
Day #11.Thank you for your video.
Day 11 is also completed Harry bhai love you
Thanks harry sir your teaching method is good
a=input('Enter your first number: ')
b=input('Enter your second number: ')
print('Addition',int(a)+int(b))
print('Substraction',int(a)-int(b))
print('Multiplication',int(a)*int(b))
print('Division',int(a)/int(b))
print('Floor',int(a)//int(b))
Wrong many mistake but you, ll improve it
@@suniljain7438What mistake he is right
Bhai ye jo photo lagai Hain na bdi mst hai👌🏻
I apologize for joining this course late, but I have completed it until day 11.
Majja aa raha hai course me
that killer ❤🔥 smile 😃 of harry bhai at begining of every video is just amazing and encourages a lot encourages a lot
day 11 complete harry thanks a lot bro
Sir ap bohat he Acha parhaty hn mashallah se Allah apko hamesha khush rakhy
Awesome video Harry bhai
A am waiting for you next day
#100daysofpythonchllalge
Day 11- Completed😍
a = input("Enter a name i will tell it all index!")
print("the limit is upto 7 index so if the error come then only input a word which have 7 index minimum and maximum")
print(a[0])
print(a[1])
print(a[2])
print(a[3])
print(a[4])
print(a[5])
print(a[6])
Harry vai ap k ';web development'' course & react course maine kya & abhi python bhi sikh raha hu lekin ek chees main nahi janta ki kaise ab job k liye apply karu.konsi website & process.
Please make a fullvideo of how to make the perfect cv and where to apply .what is the correct way????
Day-011✔✔
Date-08/12/2022
Thanks harry sir
hey what the purpose of this plus sign print(" hello," + name) can you please tell me about this thing
a=15
b=9
a=input("Enter First Number: ")
b=input("Enter Second Number: ")
print(int(a)+int(b))
print(int(a)-int(b))
print(int(a)*int(b))
print(int(a)%int(b))
4:46 all this could be done by just using print right print even the sentence has , & " "while using print.
I like it yar ap bhot acha samjata ho bhi