Python – 打印字母直到N

Python – 打印字母直到N

Python语言为用户提供了从基本计算到复杂计算的多种功能。根据用户指定的值,字母会被打印出来,打印范围为N。当我们说打印字母直到某个范围时,似乎是一个简单的任务,但是在创建程序时,涉及一些繁琐的过程。Python方法使用各种功能来打印字母直到N。这个算法作为机器学习技术的基础。

打印字母直到N

在英语中总共有26个字母,当范围N被指定为9时,从Python程序打印出来的是”a, b, c, d, e, f, g, h, j”。这是当范围被指定为9时的输出。

方法

  • 方法1:使用字符串模块

  • 方法2:使用迭代方法

  • 方法3:使用join函数

方法1:使用字符串模块打印字母直到N的Python程序

字符串模块专门用于使用”N”值打印字母的范围。该模块提供了由ASCII字符组成的预定义常量。当使用lowercase函数时,它提供小写字母的字母表。

算法

  • 步骤1 - 导入字符串模块。

  • 步骤2 - 初始化输入变量为整数数据类型。

  • 步骤3 - 使用for循环遍历用户指定的范围值从0到字符串1。

  • 步骤4 - 使用字符串模块的ascii_lowercase()函数,将输出显示为小写。

  • 步骤5 - 冒号将容易地通过列表截断。

  • 步骤6 - 以垂直方式打印字母表。

示例

#importing the string module
import string

#The range needs to be mentioned here as “N” 
string1 = 5
#for loop is used to iterate through the given input
#the ascii_lowercase function is used to print the result in lowercase
for alphabet in string.ascii_uppercase[:string1]:
#Print statement will return the list of alphabets according to the range value
    print(alphabet)

输出

A
B
C
D
E

方法2:使用迭代方法打印字母直到N的Python程序

字母是在不使用任何内置模块的情况下打印的,而是使用for循环。 for循环将遍历用户指定的值范围。

算法

  • 步骤1 - 设置范围值。

  • 步骤2 - for循环将从0迭代到用户指定的值,本例中为N=6。

  • 步骤3 - 使用chr()函数将每个值转换为其对应的ASCII字符,然后加上97。

  • 步骤4 - 添加值”97″,因为小写字母从它开始。

  • 步骤5 - 打印函数返回字母的范围。

示例

#initializing the input value
range_value = 5
#for loop used to iterate through the values
#range inbuilt function iterates through the value
for a in range(range_value):
#print the range of alphabets using the print statement
    print(chr(a+97))

输出

a
b
c
d
e

方法3:使用join函数打印字母表直到N的Python程序

字符串模块用于处理打印字符串值。同时,使用join()函数将所有字母组合在一起。

算法

  • 步骤1 −导入需要使用join函数的字符串模块。

  • 步骤2 −设置字符串1的值。

  • 步骤3 −使用换行符声明以在单独的行中打印字母。

  • 步骤4 −join函数将英文字母的所有小写字母组合在一起,范围为“N”。

  • 步骤5 −print语句以新行返回字符串值,直到N的值。

示例

#initializing the string module to hold the join function
import string

#The output is printed from the range mentioned in an integer value
string1 = 6
#print statement returns the result
print('\n'.join(string.ascii_lowercase[:string1]))

输出结果

a
b
c
d
e
f

结论

字符串模块是一个预定义的库,用于使用ASCII字母表。本文以两种方法解释了上述方法,还可以使用uppercase()函数将字母打印为大写字母。通过这种方式,程序员可以轻松地理解字符串的实现过程,直到某个范围。

Camera课程

Python教程

Java教程

Web教程

数据库教程

图形图像教程

办公软件教程

Linux教程

计算机教程

大数据教程

开发工具教程