如何使用str重复第一个字母两次?

时间:2018-12-08 02:25:54

标签: python string python-3.x python-2.7

我的目标是让用户给程序一个字;完成后,我希望它使用str重复第一个字母两次。

这是我到目前为止所拥有的:

phrase = input("Enter a word: ")

print (phrase[0])

我想要输出的示例:

Enter a word: Hello
HH

Enter a word: Grey 
GG

Enter a word: Olives
OO

1 个答案:

答案 0 :(得分:0)

尝试一下:

phrase = input("Enter a word: ")

print (phrase[0]+phrase[0])

通常,添加两个字符串会串联它们。