String Concatenation : Python tutorial 17

preview_player
Показать описание
String Concatenation : Python tutorial 17
Рекомендации по теме
Комментарии
Автор

I thought programming is difficult, but you made it very easy - Thank you
This is the best Python tutorial. Keep up the good work.

xy
Автор

mujhe lagta nai apse acha koi teacher mojood hoga youtube pe kyun ke python seekhna bohot asaan ho gaya hai apki videos dekh kar thanks sir love from pakistan

Fathworld
Автор

sir i am from punjab pakistan .you'r great sir.

filmyyard
Автор

Me coming back and seeing the whole course for I forget string concatenation:" Now I am feeling a bit old"

ethicalgamingy
Автор

been following your videos regularly bro..
I have my exams going on but i dont miss ut videos.. KEEP on uploading videos 💖

simondungeon
Автор

I want to learn @python during this lock-down period.

mohdumar
Автор

You are teaching osesome really i am getting intereste in python

shubhamsarode
Автор

Thanks..ap bhut ache se samjha the ho 🙏 very helpful yr

poojashahemir
Автор

The source code that you shared is not working.
On Dropbox it is showing Error 404

anshulanand
Автор

sir how to develop an android  application or how to make apk file using python
please help me and ans me..

jeetsingh-ccrl
Автор

first_name = "Ashutosh"
last_name = "Kumar"
full_name = first_name+" "+ last_name # Or give space as first_name = "Ashutosh "
print(full_name)


#Rule- you can not numbers with string, we can add only string with other strings
# print(first_name+5) error, invalid
print(first_name+"3")
print(first_name+str(3))


# we can print string by multiple of any number


print("Ashu "*5)

ashutoshkumar
Автор

very nice tutorial....very simple & easy to learn..good hard work.

sanjoynandi
Автор

You said that we can't add numbers with strings but above first_name is a variable as it has the value which is first_name and last_name. So will it not be you can't add numbers with variables.

banjotkohli
Автор

thank u sir it help me a lot.thank u so much

mirajkarkee
Автор

good sir
but sir link open nhi ho raha hai

Sunstargameing
Автор

Dear Harshit, Please suggest, how we can add spaces while * (multiplicating ) string.

vinodnegi
Автор

Can v became a cybersecurity agent or python programmer fron your classes

joshhae
Автор

kindly tell about how to concatenate array value within a single array

elangobala
Автор

sir visual code update me full_name= "harshit " + "vashith"...double cotetion dena

abirhossainsignedin
Автор

Can we use Raw String (r) to make the whole line a string?

Dudeinfire