Python3 輸入和輸出
Python3 輸入和輸出
輸入輸出,就是從標(biāo)準(zhǔn)輸入中獲取數(shù)據(jù)和將數(shù)據(jù)打印到標(biāo)準(zhǔn)輸出,常被用于交互式的環(huán)境當(dāng)中,Python 中常用 input()來輸入標(biāo)準(zhǔn)數(shù)據(jù),print()來輸出數(shù)據(jù)。
輸出格式美化
Python兩種輸出值的方式: 表達(dá)式語句和 print() 函數(shù)。
第三種方式是使用文件對(duì)象的 write() 方法,標(biāo)準(zhǔn)輸出文件可以用 sys.stdout 引用。
如果你希望輸出的形式更加多樣,可以使用 str.format() 函數(shù)來格式化輸出值。
如果你希望將輸出的值轉(zhuǎn)成字符串,可以使用 repr() 或 str() 函數(shù)來實(shí)現(xiàn)。
- str(): 函數(shù)返回一個(gè)用戶易讀的表達(dá)形式。
- repr(): 產(chǎn)生一個(gè)解釋器易讀的表達(dá)形式。
例如
>>> s = 'Hello, CodeBaoku'
>>> str(s)
'Hello, CodeBaoku'
>>> repr(s)
"'Hello, CodeBaoku'"
>>> str(1/7)
'0.14285714285714285'
>>> x = 10 * 3.25
>>> y = 200 * 200
>>> s = 'x 的值為: ' + repr(x) + ', ?y 的值為:' + repr(y) + '...'
>>> print(s)
x 的值為: 32.5, ?y 的值為:40000...
>>> # ?repr() 函數(shù)可以轉(zhuǎn)義字符串中的特殊字符
... hello = 'hello, yapf\n'
>>> hellos = repr(hello)
>>> print(hellos)
'hello, yapf\n'
>>> # repr() 的參數(shù)可以是 Python 的任何對(duì)象
... repr((x, y, ('Google', 'CodeBaoku')))
"(32.5, 40000, ('Google', 'CodeBaoku'))"
>>> str(s)
'Hello, CodeBaoku'
>>> repr(s)
"'Hello, CodeBaoku'"
>>> str(1/7)
'0.14285714285714285'
>>> x = 10 * 3.25
>>> y = 200 * 200
>>> s = 'x 的值為: ' + repr(x) + ', ?y 的值為:' + repr(y) + '...'
>>> print(s)
x 的值為: 32.5, ?y 的值為:40000...
>>> # ?repr() 函數(shù)可以轉(zhuǎn)義字符串中的特殊字符
... hello = 'hello, yapf\n'
>>> hellos = repr(hello)
>>> print(hellos)
'hello, yapf\n'
>>> # repr() 的參數(shù)可以是 Python 的任何對(duì)象
... repr((x, y, ('Google', 'CodeBaoku')))
"(32.5, 40000, ('Google', 'CodeBaoku'))"
相關(guān)文章
- Python 循環(huán)語句
- Python3 環(huán)境搭建
- Python3 數(shù)據(jù)類型
- Python3 字符串(String)
- Python3 MySQL 數(shù)據(jù)庫連接 - PyMySQL 驅(qū)動(dòng)
- Python choice() 函數(shù)
- Python os.dup2() 方法
- Python os.fstatvfs() 方法
- Python os.renames() 方法
- Python os.stat() 方法
- Python os.tcgetpgrp() 方法
- Python os.utime() 方法
- Python os.write() 方法
- Python istitle()方法
- Python rindex()方法
- Python 字典 Dictionary len()方法
- Python 字典 Dictionary str()方法
- Python 字典 Dictionary clear()方法
- Python 字典 Dictionary fromkeys()方法
- Python time strptime()方法