写一个 Python 程序,用一个实例将一个字符串复制到另一个字符串。
Python 程序将字符串复制到另一个示例 1
与其他语言不同,您可以使用等于运算符将一个字符串分配给另一个字符串。或者,您可以从头到尾切片,并将其保存在另一个字符串中。这个 Python 程序允许用户输入任何字符串值。接下来,我们使用上面指定的方法来复制用户指定的字符串。
# Python Program to Copy a String
str1 = input("Please Enter Your Own String : ")
str2 = str1
str3 = str1[:]
print("The Final String : Str2 = ", str2)
print("The Final String : Str3 = = ", str3)
Python 字符串复制输出
Please Enter Your Own String : Hi Guys
The Final String : Str2 = Hi Guys
The Final String : Str3 = = Hi Guys
Python 复制字符串示例 2
在这个程序中,我们使用 For 循环来迭代字符串中的每个字符,并将它们复制到新的字符串中。
# Python Program to Copy a String
str1 = input("Please Enter Your Own String : ")
str2 = ''
for i in str1:
str2 = str2 + i
print("The Final String : Str2 = ", str2)
Python 字符串复制示例 3
这个 Python 程序和上面的例子一样。然而,我们使用带有范围的 For 循环来复制一个字符串。
# Python Program to Copy a String
str1 = input("Please Enter Your Own String : ")
str2 = ''
for i in range(len(str1)):
str2 = str2 + str1[i]
print("The Final String : Str2 = ", str2)
Python 字符串复制输出
Please Enter Your Own String : Python Programs With Examples
The Final String : Str2 = Python Programs With Examples
>>>
Please Enter Your Own String : Hello World
The Final String : Str2 = Hello World