#22898: Python - 一行解法


tis7bfrankie@gmail.com (Frankie Zhao Xuan Ao)

學校 : 不指定學校
編號 : 103491
來源 : [113.211.100.91]
最後登入時間 :
2021-12-30 16:20:38
a001. 哈囉 -- Brian Kernighan | From: [113.23.129.7] | 發表日期 : 2020-10-09 15:02

input() = 會回傳使用者輸入的文字

print() = 可以顯示文字串

當print使用多個參數時,會依照順序顯示每個參數,中間會用空格間隔。

例如 print("hello","hi",1,2) 會顯示 "hello hi 1 2"

因此此題:

 

print("hello," , input())

 
ZeroJudge Forum