您的位置:

Python 程序:打印字符串中的字符

写一个 Python 程序来打印字符串中的字符,并给出一个实例。

打印字符串中的字符的 Python 程序示例 1

这个 python 程序允许用户输入一个字符串。接下来,它使用 For 循环打印该字符串中的字符。这里,我们使用 For 循环来迭代字符串中的每个字符。在 Python For 循环中,我们使用 print 语句打印该字符串中的字符。

提示:请参考字符串文章,了解 Python 中关于字符串的一切。

# Python program to Print Characters in a String

str1 = input("Please Enter your Own String : ")

for i in range(len(str1)):
    print("The Character at %d Index Position = %c" %(i, str1[i]))

返回字符串中的字符的 Python 程序示例 2

这个 python 程序显示字符串中的字符同上。然而,我们只是将换成了同时换成了。

# Python program to Print Characters in a String

str1 = input("Please Enter your Own String : ")
i = 0

while(i < len(str1)):
    print("The Character at %d Index Position = %c" %(i, str1[i]))
    i = i + 1

Python 打印字符串输出

Please Enter your Own String : Tutorial Gateway
The Character at 0 Index Position = T
The Character at 1 Index Position = u
The Character at 2 Index Position = t
The Character at 3 Index Position = o
The Character at 4 Index Position = r
The Character at 5 Index Position = i
The Character at 6 Index Position = a
The Character at 7 Index Position = l
The Character at 8 Index Position =  
The Character at 9 Index Position = G
The Character at 10 Index Position = a
The Character at 11 Index Position = t
The Character at 12 Index Position = e
The Character at 13 Index Position = w
The Character at 14 Index Position = a
The Character at 15 Index Position = y
Python 程序:打印字符串中的字符

2022-07-24
Python 程序:打印两个字符串中出现的字母

在这个简单的 python 程序中,我们需要打印两个字符串中的哪些字母。这是一个基于数字的 python 程序。 为了更好地理解这个例子,我们总是建议您学习下面列出的 Python 编程的基本主题:

2023-12-08
Python 程序:替换字符串中字符

2022-07-24
Python 程序:删除字符串中的标点符号

2022-07-24
Python 程序:查找字符串中所有字符的 ASCII 值

2022-07-24
Python 程序:查找字符串中的单词和字符数

如何计算 python 字符串中的单词和字符? 在这个字符串 python 程序中,我们需要计算一个字符串中的字符和单词数。让我们检查一个例子“我爱我的国家”在这个字符串中,我们的字数为 4,字符数为

2023-12-08
Python 程序:接受字符串值

2022-07-24
Python 程序:排序字符串中的单词

2022-07-24
Python 程序:字符示例

2022-07-24
Python 程序:查找字符串中的字符的所有出现

2022-07-24
python内置字符串(python字符串添加字符)

2022-11-16
关于python中的字符串,python里面字符串

2022-11-22
python字符串两个字符,python2 字符串

2022-11-26
Python 程序:使用字符串格式打印元组

2022-07-24
Python 程序:寻找字符串中的字符的第一次出现

2022-07-24
python基础三之字符串(python3字符串)

2022-11-13
Python中实用的字母数字字符示例

2023-05-12
Python 程序:计算字符串中元音数量

2022-07-24
Python 程序:寻找字符串中的字符的最后一次出现

2022-07-24
Python 程序:替换字符串中的字符

2022-07-24