Django Exercise 2: Revamping TextUtils | Python Django Tutorials In Hindi #13

preview_player
Показать описание


Best Hindi Videos For Learning Programming:

Follow Me On Social Media
Рекомендации по теме
Комментарии
Автор

Wow at 2:30 there was only 1.5k views (in 2019), now there are 3M+ views in 2021! Sooner or later atleast his hard work reached to people. Happy for him! awesome guy

sleepypanda
Автор

Man you are great i am in programming for 10 years, and i also teach others, but some one shared your video and i just loved it,

rabeyahossain
Автор

harry bhai you are awesome learnt many things from you harry bhai, harry bhai tussi great ho aise hume sikhate raho hum app ke dikhaye raste pe chal rahe ♥♥♥

bakithegrapler-ut
Автор

East or West Harry Bhai is the Best!!! 🔥🔥🔥❤

bhakunikaran
Автор

if removepunc == "on" and fullcaps == "on" or newlineremover == "on":
for char in djtext:
if char not in punctuations and char !='\n':
analyzed = analyzed + char.upper()

params = {'purpose':'removepunctuations', 'analyzed_text':analyzed}
return render(request, 'analyze.html', params)

officedivine
Автор

surprisingly I already did this task after the previous video without even knowing that this exercise would be given

dawoodsie
Автор

nice video and amazing concept harry bhai and challenge accepted

sanjupatidar
Автор

we can use if statements only to be able to perform multiple operations at a time

NishantCosmos
Автор

I wasted my whole day in trying to do this ( I thought I made a mistake ) 2 days ago . and I now I got to know that this wasn't my mistake . I didn't did anything new because I wanted to fix the error and to know where I was wrong. Now I can do this as it isn't an error so I can just make a function to do it 🙄🙄🙄

himanshuatri
Автор

we can perform more function by giving value to input tags
and than get that value in list and execute in while loop

yogeshyts
Автор

Great video bhai.

But if possible please extend this app and make it milti tendency based app so that we can learn how do create a multi tendency app

shyampathak
Автор

Sir ji jhakkas you are very talented and intelligent

codewithharryfanchannel
Автор

as in new line remover, there is the same bug in extra space remover also. its removing extra spaces by default.

slmn
Автор

already done it in previous video by using 'if ' instead of 'elif '

TheGamer-tbyi
Автор

Thanks a lot Harry Bhai for this awesome video course♥️😎

HariomSingh-eifb
Автор

I am travelling Today! I will try to do it asap #ChallengeAccepted

RohanDasRD
Автор

elif (charctercounter=='on'):
count= 0
djtext1 = djtext.replace(" ", "")
for x in djtext1:
if x!="/n":
count=count+1
params = {'work': 'TextAnalyzer', 'analyzed_text': count}
return render(request, 'analyzedtext.html', params)

bibeksapkota
Автор

Harry bhai If we want to create the buttons instead of Checkboxes how we can handle this please tell me

muhammadhamza
Автор

elif charcounter=="on":
analyse = ""
for char in djtext:
if char!=" ":
analyse=analyse+char
else:
continue
char_len = len(analyse)
params = {'purpose':'Counted Charecters', 'analysed_text': char_len}
return render(request, 'analyse.html', params)
else:

aviralmishraofficial
Автор

elif (wordcount=='on'):
count = 0
for x in djtext.split():
count += 1
params = {'purpose': 'capitalize', 'output':count}
return render(request, 'analyze.html', params)

cicadaislive