Solution::4 Star Pattern Printing || Python Tutorials in Tamil|| #CodingAnna

preview_player
Показать описание
To help me Make such videos Please Donate::

HopeYouEnjoyedTheVideo!!!

#CodingAnna #PythonTutorialsinTamil

⏬ Popular playlist⏬

👉Unity Tutorials:

👉Python Tutorials:

👉FlappyBird Game:

👉C# Tutorials:

👉Blender Tutorials:

🙏THANKS FOR WATCHING 🙏

⬆️🟥🟧🟨🟩🟦🟪🟫🟥🟧🟨🟩🟦🟪⬛🟥🟧🟨🟩🟦🟪🟫⬇️

♦️My Second Channel:
Gaming Anna: ⬇️

🔴🟠🟡🟢🔵🟣🟤⚪⚫🔴🟠🟡🟢🔵🟣🟤⚪⚫
💟 Subscribe the channel for more videos 💟

❤🧡💛💚💙💜🤎❤🧡💛💚💙💜🤎❤🧡💛💚💙💜🤎
DISCLAIMER:
Copyright Disclaimer under Section 107 of the copyright act 1976, allowance is made for fair use for purposes such as criticism, comment, news reporting, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favour of fair use.
Thanks For Watching!!!
Рекомендации по теме
Комментарии
Автор

Bro yaarumae ungala Mari explain pannave illa bro, you are great bro, super bro❤

VishalStunner-xt
Автор

Take good care of your health bro.I'm waiting for your next Python video.

MrJK-yqnh
Автор

a=int(input('what number do you want till:'))
b=int(input('enter 1 for straight order enter 0 for reverse patters :'))
c=bool(b)
if c ==True:
for i in range(1, a+1):
for j in range(1, i+1):
' ')
print()

elif c==False:
for i in range(a, 0, 1):
for j in range(1, 1+i):
' ')
print()

GAMENEAT-isld
Автор

print("how many star you want")
row = int(input())
print("enter 1 for straight pattern, enter 0 for reverse pattern")
pattern = int(input())

if pattern==1:
for i in range(1, row+1):
for j in range(1, i+1):
print("*", end=" ")
print()

elif pattern==0:
for i in range(row, 0, -1):
for i in range(1, i+1):
print("*", end="")
print()

akileshmugunth
Автор

A = int(input("Enter the star line you want : "))
B = int(input("For straight line star pattern enter 1 or more than 1\nFor reverse line star pattern enter 0 : "))
X = bool(B)
if X == True:
for I in range(1, A+1):
print(I*"*")
I+=1
elif X == False:
for O in range(1, A+1):
print(A*"*")
A-=1
#This method always gives same result
Is that ok 🤔

COBRA-lrsw
Автор

The easiest way is

a = int(input("Enter a number : "))
b = int(input("Enter 0 staright order or 1 for reversed order: "))

c = bool(b)

if c == True:
for i in range(1, a+1):
print("*"*i)

elif c == False:
for i in range(a, 0, -1):
print("*"*i)

miracle_ram
Автор

I have watched your video upto while loops only with that i have done this same

while True:
ino=int(input("enter 0 for straight 1 for reversed "))
j=int(input("enter the number "))
i=1
k=1
p=1
q=j
if(ino==0):
while i<=j:
print("*"*k)
i=i+1
k=k+1
input("click enter to repeat")
print()
if(ino!=0):
while p<=j:
print("*"*q)
p=p+1
q=q-1
input("click enter to repeat")
print()

sriharansatheesh
Автор

how to print any name or word in star pattern using for loop in python language by user input.



help me please

RenaHarinikanjiperiyava
Автор

Can I do a virtual host to Jarvis and use Jarvis to install a small application on it? Bro. Like the google assistant app.

MrJK-yqnh
Автор

Anna vu ku fever ah take care of your health anna😥😫😫😫

_kalaiarasi_
Автор

a=int(input('what number do you want till:'))
b=int(input('enter 1 for straight order enter 0 for reverse
patters :'))
c=bool(b)
if c ==True:
for i in range(1, a+1):
for j in range(1, i+1):
' ')
print()

elif c==False:
for i in range(a, 0, 1):
for j in range(1, 1+i):
' ')
print()

#what's error in this thala

GAMENEAT-isld
Автор

Anna see my solution 4 anna I written my code in very understandable way .

codingmastery
Автор

Bro enaku oru game develop pani thara mudiyuma bro

anithw
Автор

Bro enakku github student developer pack enakku innaikku kitaithullathu. itha na effective-வா use pandanum. ungakitta ethavathu Idea iruntha sollunga mukkiyama jarvis kku useful la iruntha please bro kandippa sollunga.

MrJK-yqnh