Python學習(一) 輸入和輸出

2021-07-03 06:42:30 字數 702 閱讀 9055

輸出

用print()在括號中加上字串,就可以向螢幕上輸出指定的文字。print函式可以給多個引數,可以同時輸出多個變數。

>>> print('hello, world')
列印數值型

>>> print(300)

300>>> print(100 + 200)

300

列印多個引數

>>> print('100 + 200 =', 100 + 200)

100 + 200 = 300

輸入

python提供了乙個input(),可以讓使用者輸入字串,並存放到乙個變數裡。

>>> name = input()

michael

>>> name

'michael'

>>> print(name)

michael

name = input()

print('hello,', name)

name = input('please enter your name: ')

print('hello,', name)

Python學習 輸入和輸出

輸出 print hello,python print the quick brown fox jumps over the lazy dog 多個字串,用逗號隔開,就可以連成一串輸出 print 會依次列印每個字串,遇到逗號會輸出乙個空格 print 300 300 print 100 200 3...

Python學習 輸入和輸出

一 標準輸入和輸出 一 輸入 input 函式 從標準輸入讀入一行文字,預設的標準輸入是鍵盤。二 輸出 print 函式 向控制台輸出乙個或多個字元。注 print 函式列印結束後預設換行,可以加入引數end 改變 二 檔案的讀和寫 一 open open 返回乙個 file 物件,基本語法格式如下...

Python學習 輸入和輸出

一 輸入 input 函式 從標準輸入讀入一行文字,預設的標準輸入是鍵盤。二 輸出 print 函式 向控制台輸出乙個或多個字元。注 print 函式列印結束後預設換行,可以加入引數end 改變 一 open open 返回乙個 file 物件,基本語法格式如下 三 f.readline f.rea...