Python3 輸入和輸出
Python3 輸入和輸出
輸入輸出,就是從標準輸入中獲取數據和將數據打印到標準輸出,常被用于交互式的環境當中,Python 中常用 input()來輸入標準數據,print()來輸出數據。
輸出格式美化
Python兩種輸出值的方式: 表達式語句和 print() 函數。
第三種方式是使用文件對象的 write() 方法,標準輸出文件可以用 sys.stdout 引用。
如果你希望輸出的形式更加多樣,可以使用 str.format() 函數來格式化輸出值。
如果你希望將輸出的值轉成字符串,可以使用 repr() 或 str() 函數來實現。
- str(): 函數返回一個用戶易讀的表達形式。
- repr(): 產生一個解釋器易讀的表達形式。
例如
>>> 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() 函數可以轉義字符串中的特殊字符
... hello = 'hello, yapf\n'
>>> hellos = repr(hello)
>>> print(hellos)
'hello, yapf\n'
>>> # repr() 的參數可以是 Python 的任何對象
... 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() 函數可以轉義字符串中的特殊字符
... hello = 'hello, yapf\n'
>>> hellos = repr(hello)
>>> print(hellos)
'hello, yapf\n'
>>> # repr() 的參數可以是 Python 的任何對象
... repr((x, y, ('Google', 'CodeBaoku')))
"(32.5, 40000, ('Google', 'CodeBaoku'))"
相關文章
- Python 循環語句
- Python3 環境搭建
- Python3 數據類型
- Python3 字符串(String)
- Python3 MySQL 數據庫連接 - PyMySQL 驅動
- Python choice() 函數
- 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()方法