Your pythons tutorial is just amazing..u explained everything from basic and how that program work, everything is best excellent narration, excellent voice and wonderful
Your pythons tutorial is jst amazing..u explained everything frm basic nd how that program work..everything is best.. But i suggest u jst make urr playlist arrangement properly..its so much confusing that which topic i should learn frm where
When we learn our basics like this, we never get bored. the best presenter of patterns in Python i have seen till now
Thank you so much :)
Your pythons tutorial is just amazing..u explained everything from basic and how that program work, everything is best excellent narration, excellent voice and wonderful
Thank you :)
Your voice and presentation is very nice🥰🥰🥰
Best explanation I've come across so far
Explanation was very clean, ty!
Your pythons tutorial is jst amazing..u explained everything frm basic nd how that program work..everything is best.. But i suggest u jst make urr playlist arrangement properly..its so much confusing that which topic i should learn frm where
Thank you :)
i will check the playlists :)
Really superb, superb, superb, clear cut explanation 👌
Thank you 😊
i am big fan of u......excellent narration
I've watched your many videos . They are really helpful. Thanks a lot
Excellent narration, excellent voice and wonderful
Thank you :)
Best concept and very intelligent the teacher is💫
Today only My Friend Suggested your Channel. Watched many video's Real Wow Awesome 💯👍
Very happy to see this channel
Thank you 😊
good explanation...easy understanding of subject.thank you for explaining from basics.you have an expressive voice also...
بہت خوب ۔صحیح معنوں میں پڑھا رہے ہو آپ
Mam please launch class 12 CBSE python ,you are best teacher and your teaching can help lakh of students...
Complete python course not available in your channel? Fo you recommend which platform to start.
තේරුණේ නෑ ... video එක හොඳයි අක්කා .👍👍👍
Nyc vedios and your voice also mam..i can understand the vedios..but some little bit confusion mam..
Mam please give answer. If I completed my basic python control
Can I start machine learning
Yes :)
Thank you mam
Fabulous explanation
Supper mam all doubts are clear
Thank you 😊
I can gurantee best explained this topic so amazing
wow awesome explanation mam
n = int(input("Enter the no of rows: "))
k = ord("A")
for i in range(n):
for j in range(i+1):
print(chr(k), end=" ")
k = k+1
k = k-i
print()
Very nice explanation..
How to connect MySQL to python can you explain pls
Tq🙂.
Nice Explanation.
Welcome 😊
hi, what is the code to do that but upside down right triangle?
Change for loop range 😊
please do some more videos
Very helpful, thank you.
Love u teacher😍
Thank you :)
🙏 you tt🔥🙏🔥🔥🔥 hi u
very good 👍👍👍
Thank you very much :)
super Explanation
Ma'am you are heaven sent... How about if we have this kind of pattern. What shall I do ?
A
BF
CGJ
DHKM
EILNO
How to print in while loop
Thank you
you also take care
Thank you :)
I love you from my heart 💓
Dear amulya any new python programming
Programmed using slicing,
n=int(input('ENTER NUMBER OF ROWS:'))
al=' ABCDEFGHIJKLMNOPQRSTUVWXYZ'
for i in range(1,n+1):
print(al[i:i+i])
it is so cool, i got it
My doubt solved
Glad to hear that 😊
superb:)
im getting this
Whe i run the code ouput shows
ABCDEF not going next line why i use online compiler
thanks akka
I really like so mch ds partten
Thank you :)
how to print A,AB,ABC,ABCD in rectangular?
Take a variable and assign
a ="ABCD"
for i in range (1,5):
for j in range(i):
print (a[j],end="")
print ()
👍
Thank you :)
How to print A,BA,ABC,DCBA,ABCDE?
how will you print asciivalue in descending order
While letter alphabet Chepu madam
It's not coming like this ,it's only print E F G H I
Give me the program i will check :)
This technic is not working
You may be making some syntax error
Yan
word = 'ABCDEFGHI'
x=''
for i in word:
x+=i
print(x)