題目鏈接:NP3 格式化輸出(一)
描述
牛牛、牛妹和牛可樂正在Nowcoder學習Python語言,現在給定他們三個當中的某一個名字name,假設輸入的name為Niuniu,則輸出 I am Niuniu and I am studying Python in Nowcoder!
輸入描述:
一行一個字符串表示名字。
輸出描述:
假設輸入的name為Niuniu,則輸出I am Niuniu and I am studying Python in Nowcoder!
輸入:
Niuniu
輸出:
I am Niuniu and I am studying Python in Nowcoder!
題解:
本題主要考察字符串的格式化輸出,見下表:
代碼/截圖:
name = input()
print("I am %s and I am studying Python in Nowcoder!" % name)
以上就是本文的全部內容啦!如果對您有幫助,麻煩點贊啦!收藏啦!歡迎各位評論區留言!!!
List of articles One 、 Prefac