#37722: Python解法


a055488@stdmail.nssh.ntpc.edu. ... (白魂)

學校 : 新北市私立南山高級中學
編號 : 237584
來源 : [123.252.121.18]
最後登入時間 :
2023-10-23 14:19:09
a001. 哈囉 -- Brian Kernighan | From: [123.252.121.18] | 發表日期 : 2023-10-02 14:20

用input將字串輸入 (記得用隱性輸入)

加上"hello,",將結果輸出。("hello,",s)的結果是hello, s,("hello,"+s)的結果是hello,s 所以前者才符合題目要求

另外字串和變數不能加在同一格裡 例如("hello, s")或("hello,+s")

s=input()
print("hello,",s)
 
ZeroJudge Forum