#輸出
print('hello, python')
print('the quick brown fox', 'jumps over', 'the lazy dog')
#多個字串,用逗號隔開,就可以連成一串輸出
#print()會依次列印每個字串,遇到逗號會輸出乙個空格
print(300) # 300
print(100 + 200) # 300
print('100 + 200 =', 100 + 200) # 100 + 200 = 300
#輸入#name = input() #這行必須在命令列執行
#列印變數 print(name)
name = input()
print('hello', name)
'''>>> name = input()
zhangyaoqi
>>> print('hello', name)
hello zhangyaoqi
'''name = input('please input your name: ')
print('hello', name)
'''>>> name = input('please input your name: ')
please input your name: zhangyaoqi
>>> print('hello', name)
hello zhangyaoqi
>>>
'''print('1024 * 768 =', 1024 * 768)
#1024 * 768 = 786432
Python學習 輸入和輸出
一 標準輸入和輸出 一 輸入 input 函式 從標準輸入讀入一行文字,預設的標準輸入是鍵盤。二 輸出 print 函式 向控制台輸出乙個或多個字元。注 print 函式列印結束後預設換行,可以加入引數end 改變 二 檔案的讀和寫 一 open open 返回乙個 file 物件,基本語法格式如下...
Python學習 輸入和輸出
一 輸入 input 函式 從標準輸入讀入一行文字,預設的標準輸入是鍵盤。二 輸出 print 函式 向控制台輸出乙個或多個字元。注 print 函式列印結束後預設換行,可以加入引數end 改變 一 open open 返回乙個 file 物件,基本語法格式如下 三 f.readline f.rea...
Python學習(一) 輸入和輸出
輸出 用print 在括號中加上字串,就可以向螢幕上輸出指定的文字。print函式可以給多個引數,可以同時輸出多個變數。print hello,world 列印數值型 print 300 300 print 100 200 300列印多個引數 print 100 200 100 200 100 20...