Python Pattern Programs | Printing Stars '*' in A Shape

Поділитися
Вставка
  • Опубліковано 13 жов 2024
  • In this Python Pattern Printing Programs video tutorial you will learn to print star '*' in A shape in detail.
    To print Star Pattern in A shape in python you have to use two for loops. the first loop is responsible for rows and the second for loop is responsible for columns.Then we are using if else conditional statements that is because we are not printing stars in each row and each column we need stars in particular pattern for that we need conditions.here we are using logical and logical or operators.
    If you are using Python 2 then if you write this code you will get error because in python 2 print is not a function and also we cant use end there so you need to use print as statement and instead of end you need to use coma (,) at the end of print statement to get the same output.
    in python 3 you write print like this:
    print("*',end="")
    in python 2 you need to write:
    print "*",
    For more free tutorials on computer programming
    / amulsacademy
    AmulsAcademy

КОМЕНТАРІ • 308

  • @sushmitagupta
    @sushmitagupta 3 роки тому +20

    Amazing explanation... now I can print entire alphabet (A - Z)❤️❤️

    • @AmulsAcademy
      @AmulsAcademy  3 роки тому +7

      Glad to hear that :)

    • @UserLuckProfile
      @UserLuckProfile Рік тому

      Bina dekhe kar logi bas logic apply kiya hai what about time complexity

  • @lennonfernandes1696
    @lennonfernandes1696 4 роки тому +17

    Nicely explained.. Btw I slightly modified the code that has generated the same output.
    In the "If" condition instead of using (col == 0 or col == 4) we can use (col % 4 == 0)
    And in the second part of the "If statement" instead of using
    (col > 0 and col < 4) we can use (col % 4 ! = 0).
    This is just to simplify the code to make it short and sweet..btw your teaching methods are amazing.

  • @Abhijeetetrx
    @Abhijeetetrx 4 роки тому +9

    Hands down, the best printing tutorial I have ever seen! Love Amulya's Academy!

  • @rahuljha5967
    @rahuljha5967 5 років тому +2

    osm mam. pure youtube pe keval hi esh logic ko mjhe smjha payi...

  • @SandeepKumar-c4r9k
    @SandeepKumar-c4r9k Рік тому +1

    Thanks to this video my understanding of nested loops got better,the best explaination ive seen

  • @saakethram9779
    @saakethram9779 4 роки тому +5

    ​ Amulya's Academy I have watched many tutorial (not just python but other study material as well) but your tutorial by far is one of the best in the youtube history. Your tutorial is a boon to youtube learners. The way every step is explained makes it easy to understand even for a layman. Expecting more videos like this . Also I would appreciate if you can help me with pascal pattern program as i couldn't find in your videos . Keep rocking :-)

    • @AmulsAcademy
      @AmulsAcademy  4 роки тому +2

      Thank you so much :)
      I will upload pascal's triangle soon {with in a week}
      Keep learning :)

    • @srirams9482
      @srirams9482 4 роки тому

      @@AmulsAcademy Thanks :-)

    • @studyofscience87
      @studyofscience87 3 роки тому

      ua-cam.com/video/5v_0Gc1Sh8s/v-deo.html this onee

  • @aishwaryalaxmiveeramalla739
    @aishwaryalaxmiveeramalla739 4 роки тому +6

    The tutorials are very nice and explained very well with great examples and clear logic. Best tutorials for lockdown period.

  • @sundayezeh953
    @sundayezeh953 2 роки тому +2

    Thanks to this video my understanding of nested loops got better. This is such an amazing well explained video.

  • @kelseycrane2707
    @kelseycrane2707 4 роки тому +3

    for row in range(7):
    for col in range(5):
    if ((col==0 or col==4) and row!=0)or ((row==0 or row==3) and (col0)):
    print("*",end="")
    else:
    print(end=" ")
    print()

  • @nobultadela3154
    @nobultadela3154 Рік тому

    Excellent Explanation don't skip and don't miss.

  • @Abdul786Munaf
    @Abdul786Munaf 5 років тому

    Har log aapka voice and aapka tutorial aapka different style Bata de but aap kaise sikhen kuchh nahin puchega..... vahi main puchunga how did you learn Amulya (Speed) ji.... First time I am saying you video I'm writing in my book how to learn python language thanks for your videos posting and uploading your new python videos 💐💐💐

  • @vdofficialchannel9841
    @vdofficialchannel9841 Рік тому

    It took me so many times to understand this tutorial so hopefully that has increased your viewer count hahaha. But now i can understand clearly and i am confident enough to apply to any pattern thankyou.

  • @harshalnath4853
    @harshalnath4853 Рік тому

    one of the best videos to learn the concepts of nested loops and pattern

  • @ahmedlac9095
    @ahmedlac9095 3 роки тому +1

    you r better than my professeurs n my teachers ..thank u

    • @AmulsAcademy
      @AmulsAcademy  3 роки тому +1

      Haha…thank you 😊

    • @ahmedlac9095
      @ahmedlac9095 3 роки тому

      @@AmulsAcademy keep going please we need ur lessons

  • @gauravsoni3752
    @gauravsoni3752 4 роки тому +2

    It is working....Thanks @AmulsAcademy for such wonderful videos. Keep making such informative stuff.

  • @gamecircle9447
    @gamecircle9447 7 років тому +4

    Ty u have explained vey nicely that I am able to make programs by myself ty very much

  • @yeonjin8
    @yeonjin8 2 роки тому

    I came here from codewithharry 💜😊
    Best explanation 😍🎉

  • @analinecrabtree1049
    @analinecrabtree1049 4 роки тому +2

    Thank you for your video. What I don’t understand is how does the program know that the first for loop is for rows and the second for loop is for columns? Could you please explain?

    • @AmulsAcademy
      @AmulsAcademy  4 роки тому

      Program does not know that the first for loop is for row, it will treat that as outer for loop.
      It will work based on the condition.
      :)

    • @studyofscience87
      @studyofscience87 3 роки тому

      ua-cam.com/video/5v_0Gc1Sh8s/v-deo.html aaa

  • @yingwaisia2707
    @yingwaisia2707 Рік тому

    Excellent Explanation!!! Nice videos, please make more ... thanks so much!!!👍

  • @raghavmahajan5803
    @raghavmahajan5803 6 років тому +2

    Amuls Academy mam u are awesome i m very thankful of u...and or operator mein mam agr hum (col==0 or col==2) then it will print only stars on col_0 beacuse its first condition is true and it will not check second condition so how it prints star on col_2

    • @AmulsAcademy
      @AmulsAcademy  6 років тому

      Thank you:)
      when column is 0 then,
      in the condition (col==0 or col==2) , col=0 true so, it will print stars in column 0.
      when col=2 , in the condition (col==0 or col==4) col=0 fails then it will check col=2 it is true so it will print stars in column 2.
      :)

  • @rashedjony8108
    @rashedjony8108 6 років тому +1

    Your teaching style is good.

  • @Sreekanth_yes
    @Sreekanth_yes 4 роки тому +2

    Great future ahead madam... awesome explanation 👌..

  • @atharvnikhare7113
    @atharvnikhare7113 4 роки тому +5

    i love the way u say "python". Its like pyton 😂😂😂😂😂😂😂

  • @sevestiansays9699
    @sevestiansays9699 Рік тому

    Thankyou so much for the explaination!

  • @bhupinderkaur5916
    @bhupinderkaur5916 4 роки тому +3

    for i in range(7):
    for j in range(5):
    if ((j==0 or j==4) and i!=0) or ((i==0 or i==3) and (j>0 and j

  • @yawqna7221
    @yawqna7221 6 років тому +7

    I love you, this is really helpful. Keep it up :)

  • @belavalekarmaruti5939
    @belavalekarmaruti5939 3 роки тому +1

    best video I ever have seen

    • @AmulsAcademy
      @AmulsAcademy  3 роки тому

      Thank you :)

    • @Animesh045
      @Animesh045 3 роки тому

      ua-cam.com/video/5v_0Gc1Sh8s/v-deo.html

    • @studyofscience87
      @studyofscience87 3 роки тому

      ua-cam.com/video/5v_0Gc1Sh8s/v-deo.html here you can

  • @hananahmadshaheen
    @hananahmadshaheen Рік тому

    Thanks maam for your precious explaination!!
    Can you please also help us to write integers(1,2,3) in steric form?

  • @skhazarath3218
    @skhazarath3218 3 роки тому

    ur voice is outstanding........

  • @samuel.r9759
    @samuel.r9759 4 роки тому +3

    I see only few patterns and I make 26 letters easily, thanks mam. 👍

  • @Chandu27-M
    @Chandu27-M 4 роки тому +1

    Hello Amulya we can write our name in the program......??

  • @SmartProgramming
    @SmartProgramming 6 років тому +1

    good explanation mam, appreciating 👍👍👍

  • @ParvezKhan-lg6nz
    @ParvezKhan-lg6nz 2 роки тому +2

    Really appreciate your efforts and believe me you are such a gem glad to find your channel

  • @muralikrishna7249
    @muralikrishna7249 4 роки тому +1

    will u also explain how to choose "or" and "and" inside if condition? I'm a lot confused there several times. Could u make another short video for that amulya?plss

  • @tausifshaikh6675
    @tausifshaikh6675 Рік тому

    Hi... Thank you so much for such a wonderful explanation!!!!

  • @pankajsoni4257
    @pankajsoni4257 4 роки тому +1

    You got a new subscriber

  • @Voyager-2-s2y
    @Voyager-2-s2y 5 років тому +1

    really Mam, you have made everything so simple, awesome teacher you are

  • @vanshikasinghparihar4208
    @vanshikasinghparihar4208 5 років тому +2

    Mam u r great thanku for making such videos to help us thnku mam😍😍😍😍

  • @typicalgirl5465
    @typicalgirl5465 5 років тому +2

    u just saved my life thanks

  • @bellamkondaswamy
    @bellamkondaswamy Рік тому

    Madam how can I we put different letters printed with symbols like * side by side so that they would look like a name

  • @santoshKumar-tt5eq
    @santoshKumar-tt5eq 5 років тому +2

    Mam the code is not working the
    Error type is bool is not callable

  • @rushendrababu3898
    @rushendrababu3898 5 років тому +2

    Hi Amulya,
    Are you running any institution? If yes, let me know I would like to join in your institution to gain more advanced knowledge on python and the same way on data structures & algorithms..

  • @ravitejark3092
    @ravitejark3092 2 роки тому

    great Videos....pls explain how to print space in row also...

  • @amittoppo2154
    @amittoppo2154 5 років тому +2

    Mam i tried to print this pattern but
    the output is little bit different, in row== 0 or row==3 the condition ( col >0 and col

    • @AmulsAcademy
      @AmulsAcademy  5 років тому

      i think problem is with space
      give me the full program.
      :)

    • @deltatran8969
      @deltatran8969 5 років тому

      @@AmulsAcademy The full program should be like this :
      for row in range(7):
      for col in range(5):
      if ((col==0 or col==4) and row!=0) or (row==3 and col>0 and col0 and col

  • @robotronix420
    @robotronix420 5 років тому +2

    the code is working! thank you

  • @mtst5307
    @mtst5307 3 роки тому +1

    Gracias por el tutorial, muy bien explicado.

  • @lingeshwaran511
    @lingeshwaran511 4 роки тому +2

    Mam, can I print any name using this method..

    • @AmulsAcademy
      @AmulsAcademy  4 роки тому +2

      Yes i will give you the video link :)
      ua-cam.com/video/Nz08Oo76zIQ/v-deo.html
      ua-cam.com/video/DOXQn_1aBrY/v-deo.html

    • @studyofscience87
      @studyofscience87 3 роки тому

      ua-cam.com/video/5v_0Gc1Sh8s/v-deo.html yess

  • @karthikeyan-lv6wu
    @karthikeyan-lv6wu 4 роки тому +2

    I WAS JUST AMAZED BCOZ IT RUNS 😎😎
    n = int (input ("Enter number of rows "))
    for i in range (n):
    for j in range(n//2):
    if (i == 0 or i == n//2) or (j == 0 or j == n//2-1):
    print ("A", end = "")
    else:
    print (" ", end = "")
    print ()

  • @sivasurya4149
    @sivasurya4149 4 роки тому +1

    Wow... Ur great madam..

  • @gotitgotya
    @gotitgotya 2 роки тому

    Thank you for the video 💕

  • @Ajaysharma-oz3kf
    @Ajaysharma-oz3kf 5 років тому

    Superb mam but i Want to write my ajay as you wrote A please help me how can i do it

  • @_inivavan_s_
    @_inivavan_s_ 3 роки тому +1

    mam is there any anotherway for if condition

    • @AmulsAcademy
      @AmulsAcademy  3 роки тому +1

      You can change if condition based on your requirements :)

    • @_inivavan_s_
      @_inivavan_s_ 3 роки тому

      Mam

    • @_inivavan_s_
      @_inivavan_s_ 3 роки тому +1

      Will you teach me

    • @AmulsAcademy
      @AmulsAcademy  3 роки тому +1

      What you want to learn ?

    • @_inivavan_s_
      @_inivavan_s_ 3 роки тому +1

      Same all pattern. using in another method like simple and easy way

  • @meeraprajapati221
    @meeraprajapati221 3 роки тому +2

    I'm getting error.. Output is printing like this.
    * * * * *
    * *
    * *
    * * * * *
    * *
    * *
    * *
    * *
    Please help me out.

  • @devanshuthakkar5399
    @devanshuthakkar5399 3 роки тому +1

    Hey mam can u make a video on logic that will help to draw any pattern in python?

  • @bhupinderkaur5916
    @bhupinderkaur5916 4 роки тому +2

    Mam and ki jgaah pe agr or daale to hi program run ho ta hai nhi to nhi ho rhaa

  • @russianlanguage4000
    @russianlanguage4000 7 років тому +2

    In row (0) and col (0) i get one more star. Please correct my mistake.
    for row in range(7):
    for col in range(5):
    if ((col==0 or col==4 and row!=0)) or ((row==0 or row==3) and (col>0 and col

    • @AmulsAcademy
      @AmulsAcademy  7 років тому +2

      for row in range(7):
      for col in range(5):
      if ((col==0 or col==4) and row!=0) or ((row==0 or row==3) and (col>0 and col

    • @russianlanguage4000
      @russianlanguage4000 7 років тому +1

      yes!!! i got the correct output. Thank you so much

    • @MegaHindiHit
      @MegaHindiHit 5 років тому

      print ("*",end " ")
      else
      print(end= " ") # give two space here then your result will be same

  • @deepuvakkalagadda
    @deepuvakkalagadda 5 років тому

    no need of col>0 and col

  • @papiyaneogi5973
    @papiyaneogi5973 5 років тому +1

    Which version is it mam

  • @gaddamshanthsri125
    @gaddamshanthsri125 5 років тому +1

    Nice teaching

  • @prashantthakur5481
    @prashantthakur5481 5 років тому +1

    Can u please tell me...hiw to write a and B in same line...please

  • @jawadsikander007
    @jawadsikander007 5 років тому +1

    hi i wt to make the strar shape not go down and draw the letter i what to put it on vertical

    • @AmulsAcademy
      @AmulsAcademy  5 років тому

      You want to write STAR like this right?
      1. write down the alphabets on a paper.
      2. all alphabet should contain same rows.
      3. write down the condition in which row and column you want star.
      Example:
      This code will print NO.
      for i in range(5):
      for j in range(10):
      if j==0 or j==4 or j==6 or j==9 or (i==j and j5):
      print("*",end="")
      else:
      print(end=" ")
      print()
      :)

  • @janibasha7210
    @janibasha7210 5 років тому +1

    Mam I had put the same code on my laptop.. Output has arrived but the result is different from Ur pattern..

    • @AmulsAcademy
      @AmulsAcademy  5 років тому

      Give me the program please i will check :)

    • @janibasha7210
      @janibasha7210 5 років тому

      Strl =""
      For ln in range(5):
      For col in range(3):
      If (ln==0 and (col>0 and col

  • @anuverma3157
    @anuverma3157 4 роки тому +2

    for me it is showing invalid syntax for print("*",end=" ") can u explain why

    • @AmulsAcademy
      @AmulsAcademy  4 роки тому

      If you are using python 2 this will show you error.
      in python 2 use
      print "*",
      :)

    • @CH--PulluriRohith
      @CH--PulluriRohith 4 роки тому

      @@AmulsAcademy thank you for this.I just wasted plenty of time on this for the correct syntax in version 2.7

    • @studyofscience87
      @studyofscience87 3 роки тому

      ua-cam.com/video/5v_0Gc1Sh8s/v-deo.html py2

  • @imedayari1
    @imedayari1 6 років тому +2

    nice tuto bro, thank you!

  • @stankafan6688
    @stankafan6688 4 роки тому +1

    ma'am you are great 🤘🔥

  • @dalipaero
    @dalipaero 4 роки тому +1

    Very nice.. code for printing D and N please..

    • @AmulsAcademy
      @AmulsAcademy  4 роки тому

      D Shape:
      ua-cam.com/video/WHritdVRkTw/v-deo.html
      N shape:
      ua-cam.com/video/IhowMjiNPdk/v-deo.html

  • @prashantsingh8603
    @prashantsingh8603 4 роки тому +2

    Mam i m enjoying learing python❤please keep it up its really very helpful for us❤❤

  • @sathyaprasad2389
    @sathyaprasad2389 2 роки тому

    Thank you ma'am 🙏

  • @gugulothuprudhvinayak5295
    @gugulothuprudhvinayak5295 6 років тому +2

    if ((column==0 or column==4) or ((row==0 or row==3) and (column>0 and column

  • @ramdhansingh1484
    @ramdhansingh1484 5 років тому +1

    Mam plz can u give a lecture on python List,Tuple and Dictionary plz plz plz plz plz plz plz plz

    • @AmulsAcademy
      @AmulsAcademy  5 років тому

      I did many videos on list tuple and dictionary please search and watch :)

  • @pavansanadi5832
    @pavansanadi5832 6 років тому +1

    clear explanation.....

  • @pcninstrument3424
    @pcninstrument3424 6 років тому

    Ex. Can you help me?
    i'm error: there's an error in your program invalid syntax
    for row in range(0,7):
    for col in range(0,5):
    if ((col==0 or col ==4) and row!=0) or ((row==0 or row ==3)and( col>0 and col

    • @AmulsAcademy
      @AmulsAcademy  6 років тому

      Are you using python 2?
      then you will get error because in python 2 is just a statement.
      you try this:
      for row in range(0,7):
      for col in range(0,5):
      if ((col==0 or col ==4) and row!=0) or ((row==0 or row ==3)and( col>0 and col

    • @pcninstrument3424
      @pcninstrument3424 6 років тому

      yeah, thank you Amuls academy.

  • @jhonjhon5952
    @jhonjhon5952 6 років тому

    how to work else part because condition is not wrong and how else part space work please tell the full program working line by line

  • @zezkcyshortsofficial
    @zezkcyshortsofficial 7 років тому +3

    hey i got that perfect A just changed the Font Style.........

  • @chagantiraviteja1651
    @chagantiraviteja1651 5 років тому +1

    Madam I want print the the alphabets two at once like UR can give programm for that

    • @AmulsAcademy
      @AmulsAcademy  5 років тому

      I will upload a video on that soon :)

  • @KrishnaManohar8021
    @KrishnaManohar8021 4 роки тому +1

    Not work for me :(
    for row in range(7):
    for col in range(5):
    if((col==0 or col==4) and row!=0) or ((row==0 or row==3) and (col>0 and col

    • @AmulsAcademy
      @AmulsAcademy  4 роки тому +1

      in the else part take end =" "...(space).
      or write
      else:
      print(" ",end"")
      About and or:
      or :
      we want to print star when anyone of the condition is true.
      in the case of col==0 or col==4,
      when running the for loops, initially col becomes 0 that time i want to print star in that place, later col becomes 2, 3 next 4,
      when it becomes 4 we want to print star in that column.
      if i take and in this condition,
      col==0 and col==4
      that means to print star both this condition need to be true, that is impossible.
      column can't be 0 and 4 at a time.
      and:
      we want to print star when both the condition is true.
      (col==0 or col==4) and row!=0)
      here we want star in column0 column4 in every row except row0.
      :)

    • @KrishnaManohar8021
      @KrishnaManohar8021 4 роки тому

      @@AmulsAcademy wow, thank u for replay. And clear cut explanation.
      Let me know when u teach python with Django tutorials.

  • @adityapratapsingh5189
    @adityapratapsingh5189 3 роки тому +1

    Nice explanation with such a sweet voice

  • @charanatmakuri9546
    @charanatmakuri9546 4 роки тому +1

    Write python program to print the pattern of A using loop and every time user should have choice, he wants to print the pattern again or not? If user don’t want to print the patter then he will press particular character (like - n) to stop this process.

    • @AmulsAcademy
      @AmulsAcademy  4 роки тому +1

      You can use while loop for that :)

    • @AliHaider-kn6gf
      @AliHaider-kn6gf 3 роки тому

      @@AmulsAcademy can u tell me my python vrsion is 3 but still invalid syntax problem there also I had written all your coding exactly like that you show in your video can u plz tell me what can I do?
      i m using thoonny as well as

  • @priyak3198
    @priyak3198 6 років тому +2

    mam can do this program using variable

    • @AmulsAcademy
      @AmulsAcademy  6 років тому +1

      You mean to take user input?
      n = int(input("rows:"))
      mid = int(n/2)
      for i in range(n):
      for j in range(5):
      if (i==0 and (j>0 and j

  • @ankitshukla5800
    @ankitshukla5800 5 років тому +2

    Ma'am Same code
    I put on my laptop
    But result is not match

  • @nomadduggsa
    @nomadduggsa 11 місяців тому

    Can u show me mirror work

  • @jhonjhon5952
    @jhonjhon5952 6 років тому

    how to work else part because condition is not wrong and how else part space work

  • @srinivasaraojyothi2917
    @srinivasaraojyothi2917 5 років тому +1

    how can i print the pattern A,B,C at a line please one example upload mam

  • @abuthahir4240
    @abuthahir4240 2 роки тому

    Could you please explain end" "

  • @venkatasuresh6737
    @venkatasuresh6737 6 років тому +1

    how to print above pattern with space in 5th column in all rows?

    • @AmulsAcademy
      @AmulsAcademy  6 років тому

      which pattern you want?
      Can you give me the output?

    • @venkatasuresh6737
      @venkatasuresh6737 6 років тому +1

      'A' pattern.you printed '*' in columns 0,1,2,3 and 4.for suppose consider there is 5th column and the whole column should be printed with space.

    • @AmulsAcademy
      @AmulsAcademy  6 років тому

      I think you want same output (as in video) ,when column is equal to 6.
      for row in range(7):
      for col in range(6):
      if (row==0 or row==3) and (col>0 and col

    • @venkatasuresh6737
      @venkatasuresh6737 6 років тому +1

      Thank you.got it.

  • @meghnakhubchandani4339
    @meghnakhubchandani4339 4 роки тому +1

    Mam in my program the stars are coming in one line so please help me

    • @AmulsAcademy
      @AmulsAcademy  4 роки тому

      Use print() outside the inner for loop :)

    • @Animesh045
      @Animesh045 3 роки тому

      ua-cam.com/video/5v_0Gc1Sh8s/v-deo.html jklm/

  • @VishalSharma-nc7uy
    @VishalSharma-nc7uy 4 роки тому

    Actually I wrote the source code in my idle and the star pyramid is not printing but the the space is coming to say it clearly my stars are not printing even thought blank spaces are coming.

  • @ArunKumar-sg6jf
    @ArunKumar-sg6jf 5 років тому +1

    Rows!=0 is for what function

    • @AmulsAcademy
      @AmulsAcademy  5 років тому

      don't want to print star in row 0.
      :)

  • @raghavmahajan5803
    @raghavmahajan5803 6 років тому +1

    mam and or operator kase lgate ho khi pr and khi pr or...smjh ni aa rha...and or ka

    • @AmulsAcademy
      @AmulsAcademy  6 років тому +1

      we use "and" when we need both the condition to be true
      for example:
      imagine that i want to print stars in row 0 every column except col 0
      col_0 col_1 col_2 col_3
      row 0 * * *
      so i will write condition like this:
      if row==0 and col!=0
      so it will print stars at: row 0 col 1
      row 0 col 2
      row 0 col 3
      it won't print star at row 0 col 0
      in "or" if any one condition is true whole expression becomes true:
      in the above example if i use "or" instead of "and"
      then it will print stars in every column. ( row ==0 or col!=0)
      because when row ==0 condition becomes true it won't check next condition that is col!=0 it will directly print star.
      example for or:
      if i want to print stars in col 0 and col=2 in each row then i will use "or"
      col_0 col_1 col_2 Col_3
      row_0 * *
      row_1 * *
      row_2 * *
      so here i will write col==0 or col==2
      if col value is 0 print star
      or if col is 2 print star.
      :)

    • @raghavmahajan5803
      @raghavmahajan5803 6 років тому

      Amuls Academy mam u are awesome i m very thankful of u...and or operator mein mam agr hum (col==0 or col==2) then it will print only stars on col_0 beacuse its first condition is true and it will not check second condition so how it prints star on col_2

    • @raghavmahajan5803
      @raghavmahajan5803 6 років тому

      Amuls Academy mam pls btado pls pls pls

  • @Irfanlesnar
    @Irfanlesnar 5 років тому +1

    Iam Irfan iam doing BE CSE 1 st year I used ur method to print the pattern but they didn't award any marks and they said this is not the correct format

    • @AmulsAcademy
      @AmulsAcademy  5 років тому

      I think they asked general program, this program is for particular row and column .

  • @charlesosei3829
    @charlesosei3829 5 років тому +1

    I have to print my name CHARLES in a pattern program, can you help?

    • @AmulsAcademy
      @AmulsAcademy  5 років тому

      I will try to upload a video on that soon :)

  • @prakashchaudhary2622
    @prakashchaudhary2622 5 років тому +2

    Good

  • @sandeepkunwr1178
    @sandeepkunwr1178 5 років тому +10

    Voiceeeeeee 😍😍😍

  • @markpaulramos6913
    @markpaulramos6913 5 років тому +1

    Please make a tutorial about import.turtle printing letter A-Z

  • @bhuvanverma4124
    @bhuvanverma4124 6 років тому +1

    Write a program to input a digit and print it in words. (Python)

  • @shivprachigupta7124
    @shivprachigupta7124 3 роки тому

    write a python program to read a string of roman letters convert it to upper case
    i need code for this

  • @belayetwale1714
    @belayetwale1714 5 років тому

    Gentile boy you are ,thank you for your support

  • @umergillani5046
    @umergillani5046 6 років тому

    In printf("*",end="");...................end not works in c language ...........it said that it is undefined function .........plzzz solve my problem ..

    • @archidsouza
      @archidsouza 6 років тому

      in c, it should be printf("*);

  • @CHARLES-ch9zg
    @CHARLES-ch9zg 4 роки тому +1

    how to make pattern with multi letter? ex. CASA

    • @AmulsAcademy
      @AmulsAcademy  4 роки тому

      Video link:
      ua-cam.com/video/Nz08Oo76zIQ/v-deo.html
      ua-cam.com/video/DOXQn_1aBrY/v-deo.html

  • @jewkuza
    @jewkuza 5 років тому +1

    how to write several letters? in one program?

    • @AmulsAcademy
      @AmulsAcademy  5 років тому

      I made a video on this, will upload it soon :)