Python學習 輸入和輸出

2021-09-01 06:30:20 字數 1710 閱讀 8966

(一)輸入

input() 函式:從標準輸入讀入一行文字,預設的標準輸入是鍵盤。

(二)輸出

print() 函式:向控制台輸出乙個或多個字元。

注:print() 函式列印結束後預設換行,可以加入引數end = " "改變

(一)open()

open():返回乙個 file 物件,基本語法格式如下:

(三)f.readline()f.readline():從檔案中讀取單獨的一行。換行符為 『\n』。如果返回乙個空字串, 說明已經已經讀取到最後一行。

(四)f.readlines()f.readlines() :返回該檔案中包含的所有行。

sizehint:可選引數, 讀取指定長度的位元組, 並且將這些位元組按行分割。

f = open("text.txt","r")

p = f.readlines()

f.close()

print(p)

![在這裡插入描述](

(五)f.write()f.write(string):將 string 寫入到檔案中, 然後返回寫入的字元數。

f = open("text.txt","w")

f.write("1 open\n")

f.write("2 read\n")

f.write("3 readline\n")

f.write("4 readlines\n")

f.write("5 write\n")

f.write("6 tell\n")

f.write("7 seek\n")

f.write("8 close\n")

f.close()

(六)f.tell()f.tell():返回檔案物件當前所處的位置, 它是從檔案開頭開始算起的位元組數。

(七)f.seek()

(八)f.close()

f.close():關閉檔案並釋放系統的資源。

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學習(一) 輸入和輸出

輸出 用print 在括號中加上字串,就可以向螢幕上輸出指定的文字。print函式可以給多個引數,可以同時輸出多個變數。print hello,world 列印數值型 print 300 300 print 100 200 300列印多個引數 print 100 200 100 200 100 20...