“Programme de motif en python” Réponses codées

Programme de motif en python

k=int(input('value of a: '))
for a in range(1,k):
    for b in range(1,k):
        if a==b:
            print('A',end=" ")
        else:
            print('B',end=" ")
        
    print()
________________________________________________________________________________
Gr@Y_orphan_ViLL@in##

motif en python

rows = 6                        #Pattern(1,121,12321,1234321,123454321)
for i in range(1, rows + 1):
    for j in range(1, i - 1):
        print(j, end=" ")
    for j in range(i - 1, 0, -1):
        print(j, end=" ")
    print()
tymepas

motif en python

j="ramkumar"
for i in range(len(j)):
    for g in range(0,i+1):
        print(j[g],end=' ')
    print('')
# end='' meaning (print the next answer , near the previous answer in same line)
#answer 1 2 3 4 5 6 like this in same row or same line(in horizontal)



name="ramkumar"
for i in range(len(name)) :
    print(name[0:i+1])
Zany Zebra

* Modèle par Python

def pattern(n):    
  for i in range(0,n):       
    for j in range(0, i+1): 
      print("* " , end="")         
      print("\r") pattern(5
Frightened Ferret

* Programme de motif en python


numbers = 10
for rowIndex in range(numbers):
    rowString = ''
    for columnIndex in range(numbers): #Same number of points
        #each row is equivalent to the previous row + 1 - use existing iterator
        rowString += str(columnIndex + rowIndex) + '\t'
    print(rowString)

Lucky Lemur

motif python


        python
        
            
        
     import re
v = "aeiou"
c = "qwrtypsdfghjklzxcvbnm"
print(*re.findall("(?=[%s]([%s]{2,})[%s])"%(c,v,c),input(), re.I) or [-1], sep="\n")
sree_007

Réponses similaires à “Programme de motif en python”

Questions similaires à “Programme de motif en python”

Plus de réponses similaires à “Programme de motif en python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code