Advanced Python Programming - String Manipulation and Functions

preview_player
Показать описание
Advanced Python Programming Tutorials! Check out my latest video on String Manipulation. We'll learn a variety of string functions, including escape characters, raw strings, upper, lower, join, split and strip!

♦♦♦♦♦♦♦♦♦♦

THECODEX is a company focused on empowering and enabling anyone to learn how to code. Established in 2015 by Avinash Jain, THECODEX has taught over 600,000 students around the world how to code. With over 16 programming courses on a wide variety of topics, and more than 20,000 5-Star reviews, THECODEX is the right choice for you.

We provide engaging and comprehensive videos that break down complex information and cover everything you need to know about the subject. All students get access to our Q/A forums where you can get your doubts and problems cleared up. At the end of every course, you will receive a certificate of completion.

Jumpstart your Coding Journey with THECODEX today!

♦♦♦♦♦♦♦♦♦♦

Music: Flash Funk (Marshmello)
Рекомендации по теме
Комментарии
Автор

I'm working through semester one of college right now, and I don't learn quite as well as others when only reading text. I come here to learn from examples and audio and I have to say, you're doing a great job for people like me. Liked and subscribed!

nobleinexile
Автор

I LOVE HIS ENERGETIC TONE THIS VIDEO HELPED ME SO MUCH WITH MY ASSIGNMENT AND I AM SO GRATEFUL TO YOU PLEASE MAKE MORE

swalehasaleem
Автор

Thank you, a very useful guide on strings to quickly refresh the memory on those. Appreciate your work, sir

NomadicDmitry
Автор

Subscribed! Within 3 min of the video. Keep up the *great* work, Brother 🙏

curiouscoder
Автор

This is as basic as it gets. “Advanced” in the title is completely misleading.

However, good tone of the video.

mmxhhqz
Автор

Who else slowed this vid down to 0.75 playback speed? XD
Very great and educational vid btw, thanks alot! keep it up!!!

robertshopov
Автор

please explain: Why the line didn't break when you entered by typing sent in the interpretor.But when used print function it did the work ..because as because if we type a=5+3 and then type a and then enter so it will give 8 by doing the task in the variable then why it is not in the case with that?

prashantthakur
Автор

Amazing guide to string manipulation. Great. Thank you.

nokkreload
Автор

looking forward to this course well done!

FOGTALK
Автор

could you help me with my phython project of 500 codes

harshbardhan
Автор

thanks I found what I was looking for. there is no substitute for examples

mrphysh
Автор

Hey Avi, you are an awesome instructor.

haythamkenway
Автор

This is nothing like advanced strings manipulation, you should the the title to beginner

mrboyban
Автор

def fetch(file_names, entries):
for names in file_names:
for year in entries:
releases= entries[year]
ent=releases.get()
s1 = year
change=eval("r'%s'" % (year, ))

s2 = ent
re=eval("r'%s'" % (ent, ))


regex1 = re.compile(change)
replace1 = re
filename = names
doc = Document(filename)
docx_replace_regex(doc, regex1, replace1)
doc.save(filename)


that r thing u used in the beginning how can i use it with variable like i have variable="hello \n wait" and can i do regex1 = re.compile(rvaribale)
please help me

azizlol
Автор

thanks - but why does he pronounce 'sentence' like that

johnduva
Автор

How to separate a single word
Example:I/P-python means
I want to get a O/P-p, y, t, h, o, n like that

Me-at-Any-Time
Автор

He forgot an import string manipulation function which is string.replace()

Example :

sent = "I am a good boy"
# And suppose we want to replace ALL the WHITESPACE which includes whitespace between
# the words of the string then we'll do

sent.replace(" ", "") # This replaces " " which is any whitespace with "" which is nothing.
Output --->Iamagoodboy

#ANother example
sent.replace(" ", "xxx")
Output --->Ixxxamxxxaxxxgoodxxxboy


so in the replace(x, y) method, the x will be the thing to replace and y will be the thing with which it
is replaced

jimhalpert
Автор

if this is advanced then i am python master lol

Miles-coxm
Автор

doesn't cover everything.
f'string'

Fred-tzhs
Автор

VARIABLES IN PYTHON ARE NOT EQUALL TO SOMETHING. THEY ARE BOUNDED.

alexchesakov