python 輸出與輸入

輸出 print("helloworld") print('你好啊') 格式化輸出 a = "hello" b = 10 print(a + ' world ' + str(b)) print("%s world %d" %(a, b)) print("{A} python {B}".format(A=a, B=b)) #不知道打印類型,可使用 %r 換行輸出 \n 後的內容會在另一行顯示; pr
相關文章
相關標籤/搜索