變數=輸入字元:
n =input()
變數=輸入值(一定要加「()」)
程式碼:
n=input()
輸出=hello+輸入字元
print ("hello,",n)
輸出 (hello,輸入字元) 因hello,非變數,則前後需要「" "」
而兩項目之間須由「,」隔開
n為輸入字元
輸出: hello, 輸入字元
程式碼:
print("hello,",n)
如果真的不會再來看:
總程式碼:
n=input()
print("hello,",n)