首页 > 编程语言 >【Python】字母 Rangoli 图案

【Python】字母 Rangoli 图案

时间:2024-07-28 12:00:07浏览次数:20  
标签:rangoli Python 字母 list ---- -- str Rangoli size

一、题目

You are given an integer N. Your task is to print an alphabet rangoli of size N. (Rangoli is a form of Indian folk art based on creation of patterns.)

Different sizes of alphabet rangoli are shown below:

# size 3

----c----
--c-b-c--
c-b-a-b-c
--c-b-c--
----c----

 # size 5

--------e--------
------e-d-e------
----e-d-c-d-e----
--e-d-c-b-c-d-e--
e-d-c-b-a-b-c-d-e
--e-d-c-b-c-d-e--
----e-d-c-d-e----
------e-d-e------
--------e--------

 # size 10

------------------j------------------
----------------j-i-j----------------
--------------j-i-h-i-j--------------
------------j-i-h-g-h-i-j------------
----------j-i-h-g-f-g-h-i-j----------
--------j-i-h-g-f-e-f-g-h-i-j--------
------j-i-h-g-f-e-d-e-f-g-h-i-j------
----j-i-h-g-f-e-d-c-d-e-f-g-h-i-j----
--j-i-h-g-f-e-d-c-b-c-d-e-f-g-h-i-j--
j-i-h-g-f-e-d-c-b-a-b-c-d-e-f-g-h-i-j
--j-i-h-g-f-e-d-c-b-c-d-e-f-g-h-i-j--
----j-i-h-g-f-e-d-c-d-e-f-g-h-i-j----
------j-i-h-g-f-e-d-e-f-g-h-i-j------
--------j-i-h-g-f-e-f-g-h-i-j--------
----------j-i-h-g-f-g-h-i-j----------
------------j-i-h-g-h-i-j------------
--------------j-i-h-i-j--------------
----------------j-i-j----------------
------------------j------------------

The center of rangoli has the first alphabet letter a, and the boundary has the Nth alphabet letter (in alphabetical order).

Function Description

Complete the rangoli function in the editor below.

Rangoli has the following parameters:

  • int size : the size of the rangoli

Returns

  • string: asingle string made up of each of the lines of the rangoli separated by a newline character (\n)

Sample Input

5

Sample Output

--------e--------
------e-d-e------
----e-d-c-d-e----
--e-d-c-b-c-d-e--
e-d-c-b-a-b-c-d-e
--e-d-c-b-c-d-e--
----e-d-c-d-e----
------e-d-e------
--------e--------

二、代码

def print_rangoli(size):
    column = 4 * size - 3
    letters = 'abcdefghijklmnopqrstuvwxyz'

    for i in range(size):
        str_list = list(letters[size - j - 1] for j in range(i + 1))
        str_list += list(letters[size - j] for j in range(i, 0, -1))
        string = '-'.join(str_list)
        print(string.center(column, '-'))

    for i in range(size - 1, 0, -1):
        str_list = list(letters[size - j - 1] for j in range(i))
        str_list += list(letters[size - j] for j in range(i - 1, 0, -1))
        string = '-'.join(str_list)
        print(string.center(column, '-'))


if __name__ == '__main__':
    n = int(input())
    print_rangoli(n)

三、解读

题目要求打印由字母组成的 rangoli 图案。

column = 4 * size - 3

计算 rangoli 每一行的总长度。由于是中心对称图案,总长度是 4 * size - 3。

for i in range(size):
    str_list = list(letters[size - j - 1] for j in range(i + 1))
    str_list += list(letters[size - j] for j in range(i, 0, -1))
    string = '-'.join(str_list)
    print(string.center(column, '-'))

1、使用 for 循环,从 0 到 size - 1 ,用于生成 rangoli 图案的上半部分。

2、使用列表推导式和 list() 函数创建一个包含从 letters 中选定字母的列表 str_list。这个列表包含从 letters[size - 1] 到 letters[0] 的字母,但只包含 i + 1 个元素。

3、将 str_list 与另一个列表推导式的结果连接起来,这个推导式从 letters[size - 2] 到 letters[0],步长为 -1, 创建了字母序列的下半部分。

4、使用 join() 方法将 str_list 中的字母用连字符 '-' 连接起来,形成 rangoli 图案的一行。

5、使用 center() 方法将 string 在总长度 column 的行中居中对齐,使用 '-' 填充空白位置,然后打印出来。

for i in range(size - 1, 0, -1):
    str_list = list(letters[size - j - 1] for j in range(i))
    str_list += list(letters[size - j] for j in range(i - 1, 0, -1))
    string = '-'.join(str_list)
    print(string.center(column, '-'))

1、另一个 for 循环,从 size - 1 递减到 1 ,用于生成 rangoli 图案的下半部分。

2、与第一个循环相同,创建字母行。

3、与第一个循环相同,将字母序列连接成一个字符串。

4、与第一个循环相同,打印图案。

if __name__ == '__main__':
    n = int(input())
    print_rangoli(n)

主程序入口。先读取用户输入的整数n,然后调用 print_rangoli 函数并传入 n 作为参数,打印字母 rangoli 图案。

标签:rangoli,Python,字母,list,----,--,str,Rangoli,size
From: https://blog.csdn.net/u010528690/article/details/140740903

相关文章

  • python 闭包、装饰器
    一、闭包:1.外部函数嵌套内部函数 2.外部函数返回内部函数 3.内部函数可以访问外部函数局部变量         闭包(Closure)是指在一个函数内部定义的函数,并且内部函数可以访问外部函数的局部变量,即使外部函数已经执行完毕,这种现象称为闭包。在Python中,闭包常常用......
  • 掌握 IPython %%time 魔法命令:高效测量代码块执行时间
    引言在编程和数据分析中,了解代码的执行时间是优化性能的关键步骤。IPython,作为一个强大的交互式计算环境,提供了多种工具来帮助用户测量和优化代码。其中,%%time魔法命令是IPython中用来测量代码块执行时间的便捷工具。本文将详细介绍%%time魔法命令的使用方法,并通过一......
  • 探索 IPython 中的 %%javascript 魔法命令:运行 JavaScript 代码的秘籍
    引言IPython是一个强大的交互式计算环境,它不仅支持Python语言,还通过各种魔法命令扩展了其功能。其中,%%javascript魔法命令是IPython扩展中一个非常有趣的特性,它允许用户在IPython环境中直接运行JavaScript代码。这对于需要在数据科学和科学计算中使用JavaScript......
  • pythonasm库分析,看看你和自学编程小学生的差距
    下面是pythonasm.asm库的源代码fromkeystoneimport*fromcapstoneimport*assembly_instructions=[]#储存汇编指令的列表#汇编指令写入列表defmov(reg1,reg2):assembly_instructions.append(f"mov{reg1},{reg2}")defdb(value):assembly_instructio......
  • 【Python系列】Python 中的垃圾收集:深入理解与实践
    ......
  • Python酷库之旅-第三方库Pandas(050)
    目录一、用法精讲181、pandas.Series.var方法181-1、语法181-2、参数181-3、功能181-4、返回值181-5、说明181-6、用法181-6-1、数据准备181-6-2、代码示例181-6-3、结果输出182、pandas.Series.kurtosis方法182-1、语法182-2、参数182-3、功能182-4、返回值1......
  • 使用 python matplotlib 和 metpy 添加辅助 y 轴
    我知道这个问题似乎与这里的许多其他问题类似,但我已经尝试过它们,不幸的是它们都没有解决我在尝试添加辅助y轴时当前面临的问题。问题是很简单,但我找不到任何可以修复它的东西:在SkewT图上添加辅助y轴会更改图的y限制,而不仅仅是添加轴。基本上,我希望添加辅......
  • Python实现基于卷积神经网络的恶意代码分类系统(设计思路概述)
    这个设计是关于一个基于卷积神经网络(CNN)的恶意代码分类系统,其主要目标是对恶意代码进行自动分类,帮助用户识别并防范不同类型的恶意软件。以下是该系统的设计思路、方法及实现过程的详细解释:设计思路恶意代码图像化:由于直接对恶意代码的源代码或二进制形式进行分类难度较......
  • Python实现基于卷积神经网络的恶意代码分类系统
    目录摘要IABSTRACTII1绪论11.1研究背景与意义11.2国内外研究现状21.3技术路线32相关知识背景52.1恶意代码检测概述52.2深度学习技术基础62.2.1卷积神经网络基本结构72.2.2激活72.2.3池化83基于卷积神经网络的恶意代码分类方法103.1卷......
  • 如何在Python脚本中解析和打印来自pymeter的API响应和错误代码?
    如何在python脚本中解析和打印来自pymeter的API响应和错误代码?PyMeter是jmeter的python版本。(pymeter帮助文档-https://pymeter.readthedocs.io/en/latest/api.html)我正在尝试获取API的性能统计数据-https://reqres.in/api/users?page=2......