3

私の目標は、Python を使用して中空のダイヤモンドを作成することです。

サンプル入力:

Input an odd Integer:
      9

出力例:

    *
   * *
  *   *
 *     *
*       *
 *     *
  *   *
   * *
    *

しかし、これまでのところ、正しく機能しない次のコードがあります。上記の目標を達成するためにコードを変更するのを手伝ってください:

a=int(input("Input an odd integer: "))

k=1
c=1

r=a

while k<=r:
    while c<=r:
        print "*"
        c+=1

    r-=1
    c=1

    while c<=2*k-1:
        print "*"
        c+=1

    print "\n"
    k+=1

r=1
k=1
c=1

while k<=a-1:
   while c<=r:
       print " "
       c+=1

   r+=1
   c=1

   while c<= 2*(a-k)-1:
       print ("*")
       c+=1

   print "\n"
   k+=1

上記のコードは、私の目標とはかけ離れた結果​​を返します。

Input an odd integer: 7
*
*
*
*
*
*
*
*


*
*
*
*
*
*
*
*


*
*
*
*
*
*
*


*
*
*
*
*
*
*



*
*
*
*
*
*
*
*
*
*
*


*
*
*
*
*
*
*
*
*


*
*
*
*
*
* 
*


*
*
*
*
*


*
*
*





*

私は実際にこの投稿からコードを変換しています: http://www.programmingsimplified.com/c/source-code/c-program-print-diamond-pattern C言語で書かれており、中空のもののために後で変更しますが、私はできますわかりません...変換に問題があります..

4

9 に答える 9

10

中空のダイヤモンドは方程式の解です

|x|+|y| = N

整数グリッド上。したがって、1 ライナーとしての中空のダイヤモンド:

In [22]: N = 9//2; print('\n'.join([''.join([('*' if abs(x)+abs(y) == N else ' ') for x in range(-N, N+1)]) for y in range(-N, N+1)]))
    *    
   * *   
  *   *  
 *     * 
*       *
 *     * 
  *   *  
   * *   
    *    
于 2013-01-02T13:47:02.353 に答える
8

あなたの問題はあなたが使い続けることですprint。printステートメント(およびPython 3の関数)は、明示的に指示しない限り、印刷したものの後に改行を追加します。あなたはこのようにPython2でそれを行うことができます:

print '*', # note the trailing comma

または、Python 3(print関数を使用)では次のようになります。

print('*', end='')

私の解決策

私はこの問題を自分で考えて、この解決策を思いつきました。

# The diamond size
l = 9

# Initialize first row; this will create a list with a
# single element, the first row containing a single star
rows = ['*']

# Add half of the rows; we loop over the odd numbers from
# 1 to l, and then append a star followed by `i` spaces and
# again a star. Note that range will not include `l` itself.
for i in range(1, l, 2):
    rows.append('*' + ' ' * i + '*')

# Mirror the rows and append; we get all but the last row
# (the middle row) from the list, and inverse it (using
# `[::-1]`) and add that to the original list. Now we have
# all the rows we need. Print it to see what's inside.
rows += rows[:-1][::-1]

# center-align each row, and join them
# We first define a function that does nothing else than
# centering whatever it gets to `l` characters. This will
# add the spaces we need around the stars
align = lambda x: ('{:^%s}' % l).format(x)

# And then we apply that function to all rows using `map`
# and then join the rows by a line break.
diamond = '\n'.join(map(align, rows))

# and print
print(diamond)
于 2013-01-02T13:24:07.690 に答える
1

これはきれいではありませんが、あなたが望むことをする関数です:

def make_diamond(size):
    if not size%2:
        raise ValueError('odd number required')
    r = [' ' * space + '*' + ' ' * (size-2-(space*2)) + '*' + ' ' * space for space in xrange((size-1)/2)]    
    r.append(' ' * ((size-1)/2) + '*' + ' ' * ((size-1)/2))
    return '\n'.join(r[-1:0:-1] + r)
  • まず、奇数であることを確認します。
  • 次に、中央から下に向かって行のリストを作成します。
  • 次に、最後のポイントを作成します。
  • 次に、それらを文字列として返します。中心線のない上に下のミラーがあります。

出力:

>>> print make_diamond(5)
  *  
 * * 
*   *
 * * 
  *  
>>> print make_diamond(9)
    *    
   * *   
  *   *  
 *     * 
*       *
 *     * 
  *   *  
   * *   
    *   
于 2013-01-02T13:32:29.827 に答える
1
def diamond(n, c='*'):
    for i in range(n):
        spc = i * 2 - 1
        if spc >= n - 1:
            spc = n - spc % n - 4
        if spc < 1:
            print(c.center(n))
        else:
            print((c + spc * ' ' + c).center(n))

if __name__ == '__main__':
    diamond(int(input("Input an odd integer: ")))
于 2013-01-02T13:31:23.770 に答える
0

前の回答には 2 つの修正があり、ここで行われました。

import math
x = int(input("enter no of odd lines : ")) #e.g. x=5
i = int(math.fabs(x/2)) # i=2 (loop for spaces before first star)
j = int(x-2) #j=3 # y & j carry loops for spaces in between
y = int(x-3) #y=2 
print ( " " * i + "*" )
i = i-1 #i=1

while math.fabs(i) <= math.fabs((x/2)-1): # i <= 1
    b = int(j- math.fabs(y)) # b = (1, 3, 1) no of spaces in between stars
    a = int(math.fabs(i)) # a = (1, 0, 1) no of spaces before first star
    print (" "* a + "*" + " "*b + "*")
    y = y-2 # 2,0,-2
    i = i-1 # 1,0,-1, -2 (loop wont run for -2)

i = int(math.fabs(i)) # i = -2
print ( " " * i + "*")

注:これはpython 2.5xとpython 3.xの両方で機能します。2つの答えの違いを知りたい場合は、グーグルで検索してください。

于 2016-11-25T10:57:55.853 に答える
0

1つのループで作成しました;)

x = input("enter no of odd lines : ") #e.g. x=5
i = int(math.fabs(x/2)) # i=2 (loop for spaces before first star)
j = int(x-2) #j=3 # y & j carry loops for spaces in between
y = int(x-3) #y=2 
print ( " " * i + "*" )
i = i-1 #i=1

while math.fabs(i) <= math.fabs((x/2)-1): # i <= 1
      b = int(j- math.fabs(y)) # b = (1, 3, 1) no of spaces in between stars
      a = int(math.fabs(i)) # a = (1, 0, 1) no of spaces before first star
      print (" "* a + "*" + " "*b + "*")
      y = y-2 # 2,0,-2
      i = i-1 # 1,0,-1, -2 (loop wont run for -2)

i = int(math.fabs(i)) # i = -2
print ( " " * i + "*")
于 2015-08-04T21:42:48.883 に答える