Tutorial 18- Python Advanced String Formatting

preview_player
Показать описание
Please join as a member in my channel to get additional benefits like materials in Data Science, live streaming for Members and many more
In this we will understand about Python Advanced String formatting

Connect with me here:

If you like music support my brother's channel

Please do support my channel

Buy the Best book of Machine Learning, Deep Learning with python sklearn and tensorflow from below
amazon url:

You can buy my book on Finance with Machine Learning and Deep Learning from the below url

Subscribe my unboxing Channel

Below are the various playlist created on ML,Data Science and Deep Learning. Please subscribe and support the channel. Happy Learning!

You can buy my book on Finance with Machine Learning and Deep Learning from the below url

🙏🙏🙏🙏🙏🙏🙏🙏
YOU JUST NEED TO DO
3 THINGS to support my channel
LIKE
SHARE
&
SUBSCRIBE
TO MY YOUTUBE CHANNEL
Рекомендации по теме
Комментарии
Автор

f string is the most efficient way in string formatting

darshanpadaliya
Автор

we can also do this by basic python concept:
return "Welcome " + name +". your age is " + str(age)

karanjaiswal
Автор

Using f-strings is better than using format(), as it is not dependent on the ordering of variables.


def welcome_email(name, age):
return f"Welcome {name}. Your age is {age}"

welcome_email('Krish', 29)


Output:
'Welcome Krish. Your age is 29'

BiranchiNarayanNayak
Автор

#You can also use f string
def greet(name):
return f" Hello {name} .Welcome to the comunity"
greet("Krish")

rohitchitte
Автор

Thanks Sir.Please make a advanced playlist of web scrapping.

joyprokash
Автор

Sir how to convert jupyter notebook into pdf can I make video on that? If possible

nikhilhase
Автор

Is unicode problems in strings are important for data science?
And what other concepts have to learn in python strings for data science?

mahivarshini
Автор

Bro any way to work with excel more than 1gb in pandas
It is too slow or almost not good for nothing

bimalpbaby
Автор

Great video sir can u make a video on re module

akashpawar
Автор

f" is what i use over this

alcoder