2.3.1 print 輸出命令
print(項目1[,項目,......., sep=分隔字元, end = 結束字元])
代碼: 選擇全部
print(100, 60, sep="<----->", end="終止")
代碼: 選擇全部
print(100, 60, sep="<----->", end="終止")
代碼: 選擇全部
chinese = int(input("國文成績: "))
math = int(input("數學成績: "))
english = int(input("英文成績: "))
total = chinese + math + english
print("你的成績總分為:" + str(total))