F-strings in Python | Python Tutorial #7

preview_player
Показать описание
In this video, I have explained what f strings in python are and how to use them to write effective python programs.
Рекомендации по теме
Комментарии
Автор

Thanks to make it so easy to understand 😊

manikapriya
Автор

Harry sir me apka codewithHarry channel ko subscribe kiya howa hai kaafi time and uspy videos apky aty rehte hein joke boht helpful hein....
Sir me bs yeh jaan na chahta hon kya yeh bhi ap hi ka channel hai na just for confirmation sir.[ Love u sir, I learnt alot from you!]

zainkorai
Автор

Bhai aapki python hindi playlist puri dekhi he 👍👍👍👍

Anonymous-
Автор

name = "Uzair"
dob = "30/3/2007"
print(f"My name is {name} and my date of birth is {dob}")

USKgamerz
Автор

harry bhai # kaise use karte ho select kar ke

mohammadumairmemon
Автор

when I use f string method in my vs code then it shows syntax error, I have already checked my code but I can't find my problem. please give some suggestion

rupeshgoyal
Автор

what about: names = [ws[f"A{i}"].value for i in score_list] what is the ws?

WritingTheActs
Автор

Sir please tell how that f letter tilted

adityakumar
Автор

invalid syntax (<fstring>, line 1) please help!

chytoxen
Автор

name = "Adam"
dob = "18.12.1932"
str1 = "My name is "
str2 = " and my dob is "
fstring = f"{str1} + {name} + {str2} + {dob}"
string (fstring)

toxictype
Автор

#ProgrammingWithHarry without using .format we can get result!!?
st1 = "This is a basket containing"
st2 = 32
st3 = "apples"
print(st1, st2, st3)

Razakhan-rdgl
Автор

I don't know that you also teach in English I am watching your hindi python tutorials .

Govision
Автор

name = 'Prabhdeep singh'
dob = '12/9/2011'
print(f"My name is {name} and My dob is {dob}")

AbharkoiMasterchef
Автор

name = "Adam "
dob = "18.2.1932"

message = f"My name is {name} and my dob is{dob}"

print(message)

manojdomana
Автор

Re: Tutorial 7 f-strings. I noticed you don't have to type print(resultf) it will print OK without this line.

mikegarner
Автор

print(f"My name is {name} my bird of date is {bod}")

ferhatnusreturuc
Автор

str1 = "My name is Shaurya Singh "
str2 = "and my date of birth is "
str3 = "29.07.2007"
resultf = f"{str1}{str2}{str3}"
print(resultf)

shauryasingh
Автор

t1 = "My name is"
# t2 = "My dob is"
# name = "xyz and"
# dob = "6/5/2008"
# a = f"{t1} {name} {t2} {dob}"
# print(a)

ayushjagota
Автор

text1= "My name is "
name = "Adam "
text2 = "and my date of birth is "
dob = "18.12.1932"
print1 = f"{text1}{name}{text2}{dob}"
print(print1)

majesticgamerz
Автор

Str1 = " My name is Adam and "
Str2 = " my dob is 18.12.1932 "
Result = f"{Str1}{Str2}"
Print(Result)

prashanthd
visit shbcf.ru