os.system(), 运行shell命令;可将指令以字符串/ 字符串拼接的形式喂进去 ... output: C:\Users\user\AppData\Local\Programs\Python\Python37 ... ... <看更多>
os.system python用法 在 Python: How to get stdout after running os.system? - Stack ... 的推薦與評價
... <看更多>
Search
os.system(), 运行shell命令;可将指令以字符串/ 字符串拼接的形式喂进去 ... output: C:\Users\user\AppData\Local\Programs\Python\Python37 ... ... <看更多>
... <看更多>
#1. Python os.system()用法及代碼示例- 純淨天空
Python os.system()用法及代碼示例. ... Python program to explain os.system() method # importing os module import os # Command to execute # Using Windows OS ...
#2. python执行系统命令的方法:os.system(), os ... - CSDN博客
1、使用os.system("cmd")这是最简单的一种方法,其执行过程中会输出显示cmd命令执行的信息。例如:print os.system("mkdir test") >>>输出:0可以看到 ...
#3. [D30] pythonOS:系統指令和應用 - iT 邦幫忙
往往python做起來較複雜的可直接用系統指令來執行。 system() & popen() 等於替代了 ... abc") #複製至abc目錄裡 os.system("rm cmd.py") #刪除檔案 ...
#4. python執行系統命令的方法:os.system(), os.popen ...
1、使用os.system("cmd"). 這是最簡單的一種方法,其執行過程中會輸出顯示cmd命令執行的資訊。 例如:print os.system("mkdir test") >>>輸出:0.
#5. Python呼叫系統命令os.system()和os.popen()的實現 - 程式人生
cmd:要執行的命令。 mode:開啟檔案的模式,預設為'r',用法與open()相同。 buffering:0意味著無緩衝; ...
#6. 詳解Python呼叫系統命令的六種方法 - IT145.com
作為膠水語言,Python可以很方便的執行系統命令,Python3中常用的執行作業 ... 用法:. os.system("command"). 範例:. import os a=os.system("ping ...
#7. 请问在python 中os.system()的用法? - 慕课网
请问在python 中os.system()的用法? ... os.system调用程序放到后台,终止时kill掉它。 ... 如何在上一行仍在运行时跳转到python 代码的另一行.
#8. Python调用系统命令的六种方法 - 51CTO博客
用法 :os.popen(command[, mode[, bufsize]]). os.system(cmd)或os.popen(cmd),前者返回值是脚本的退出状态码,后者的返回值是脚本执行过程中的输出 ...
#9. python 中os.system()的用法? - 百度知道
os 模块中的system()函数可以方便地运行其他程序或者脚本。 语法如下:os.system(command). 其参数含义如下所示:. command 要执行的命令,相当于在Windows的cmd窗口中 ...
注意:使用該函數經常會莫名其妙地出現錯誤,但是直接執行命令並沒有問題,所以一般建議不要使用。 用法:os.system("command").
#11. os.system、os.popen和subprocess的區別(一) - 台部落
python 調用Shell腳本,有兩種方法:os.system()和os.popen(), ... 至於with的用法就不多講了,使用它,不需要顯式的寫p.close()。
#12. python基础之os.system函数- 倥偬时光 - 博客园
前言os.system方法是os模块最基础的方法,其它的方法一般在该方法基础上封装完成。 os的system原理system函数可以将字符串转化成命令在服务器上运行; ...
#13. os --- 多种操作系统接口— Python 3.10.0 說明文件
该变量名修改会影响由 os.system() , popen() , fork() 和 execv() 发起的子进程。 ... 有关其可用性和用法的说明,请参阅open(2) 手册(Unix 上)或MSDN (Windows ...
#14. python筆記16-執行cmd指令(os.system和os.popen) - 人人焦點
徹底明白os.system、os.popen、subprocess.popen的用法和區別. os.system 首先來看這個函數的文檔說明是說是在一個子shell中執行命令, 也即相當於執行 ...
#15. python2 os.system简单用法 - 简书
os.system 需要在Python 代码中运行一个命令,最基本的方法就是os 模块提供的system()。 格式它只有一个单字符串的参数,也是Linux 系...
#16. python os system用法 - 軟體兄弟
python os system用法,, python调用Shell脚本,有两种方法:os.system(cmd)或os.popen(cmd),前者.... 用法:subprocess的目的就是启动一个进程并和它通信PIPE表示的是 ...
#17. 解決python中os.system調用exe文件的問題 - WalkonNet
我這裡用的是python寫的小程序,那就需要考慮用python調用MODTRAN的exe文件運行,查瞭一些資料可以用os.system命令來. 執行exe文件,說起來直接調用 ...
#18. Python OS及Shutil檔案處理使用筆記
os.system() #括號中加入CMD指令,即可用Python執行(例如:os.system(ls)) os.walk() #遍歷資料夾或路徑 os.path() #主要用於獲取資料夾or檔案屬性或 ...
#19. os, os.path模塊常用指令用法| Python學習筆記
os, os.path模塊常用指令用法| Python學習筆記. Python可以跨平台使用,在Linux、Windows、Mac的操作系統中都可安裝Python來使用,然而每種操作系統有 ...
#20. Python調用系統命令os.system()和os.popen()的實… - MQTTK
python 之os 模塊的常見用法在Python的標準庫os模塊中包含普遍的操作系統功能os 模塊引入的方法是: import os 以下為os 模塊常見的使用方法: 1,os.getcwd 獲取當前 ...
#21. Python 執行系統命令的常見用法 - w3c學習教程
Python 執行系統命令的常見用法,本文總結了使用python 程式執行系統的幾種命令,介紹各個模組的優缺點。 os system模組僅僅在一個子終端執行系統命令 ...
#22. 【Python】执行系统命令的常见用法 - 阿里云开发者社区
本文总结了使用Python 程序执行系统的几种命令,介绍各个模块的优缺点。 os.system模块. 仅仅在一个子终端运行系统命令,而不能获取命令执行后的返回信息,如果在命令行 ...
#23. Python 雜記:os.system()、subprocess.run()、call()
os.system os.system 是對C 語言中system 系統函數的封裝,允許執行一條命令,並返回退出碼exit code ,命令輸出的內容會直接打印到屏幕上, ...
#24. 盤點Python中Os模塊的那些用法
運行shell命令。 import os name=os.system('dir') print(name). 運行結果. 6. os.sep 可以 ...
#25. Python调用Linux系统命令的几种方式 - 技术杂谈
在子终端运行系统命令,可以获取命令执行后的返回信息以及执行返回的状态码用法: os.system(cmd)
#26. Python调用系统命令的六种方法 - 腾讯云
作为胶水语言,Python可以很方便的执行系统命令,Python3中常用的执行操作 ... 用法:. os.system("command"). 示例: import os a=os.system("ping ...
#27. Python 速查手冊- 12.5 基本檔案與目錄處理os 與os.path
本篇文章介紹Python 標準程式庫的os 與os.path 模組。 ... os.system(command), 執行command , command 為系統指令的字串。 os.getcwd(), 取得目前所在路徑。
#28. Python 執行Command Line – 柯博文老師 - PowenKo
下面是調用外部程式及各自的優點和缺點的各種方式的總結:. os.system. 使用oos.system("some_command with args")傳遞命令和參數到系統的外殼。
#29. Python 执行系统命令- subprocess 模块的使用 - 隔叶黄莺 ...
简单说来,Python 执行系统命令的方式有四种方式,即os.system(cmd) (建议用subprocess ... 关于subprocess 模块的用法基本就是讲述 subprocess.run(.
#30. python中os模組用法 - 程式前沿
os.system('dir') 0 >>> os.system('cmd') #啟動dos. 6、os.sep 可以取代作業系統特定的路徑分割符。 7、os.linesep字串給出當前平臺使用的行終止符 > ...
#31. python 运行shell命令的几种方法(os.system - 程序员信息网
在子进程中调用exec函数去执行命令; 3.在父进程中调用wait(阻塞)去等待子进程结束。对于fork失败,system()函数返回-1。 ****用法示例>>> os.system('ls ...
#32. python os.system用法 - 掘金
python os.system用法技术、学习、经验文章掘金开发者社区搜索结果。掘金是一个帮助开发者成长的社区,python os.system用法技术文章由稀土上聚集的技术大牛和极客共同 ...
#33. Python os.popen() 方法 - 菜鸟教程
Python os.popen() 方法Python OS 文件/目录方法概述os.popen() 方法用于从一个命令打开一个管道。 在Unix,Windows中有效语法popen()方法语法格式如下: ...
#34. Python Python呼叫shell的方法 - w3c菜鳥教程
Python Python 呼叫shell的方法,1 1 os system command 在一個子shell中 ... 之前一直以為在python裡是不能使用方法覆蓋的,結果後來發現可以,這裡寫 ...
#35. python - 在sed命令中使用os.system()的问题 - IT工具网
我正在写一个小方法来替换文件中的一些文本。 。 当我试图使用该方法的参数时,我在使用os.system()调用时遇到问题如果我使用如下字符串,则一切正常:
#36. python如何呼叫作業系統原語? - 劇多
用法 :os.system(“command”). os.popen()這種呼叫方式是透過管道的方式來實現,函式返回是file read 的物件,對其進行讀取read、readlines等操作可以 ...
#37. Python之系统交互(调用系统命令)subprocess - IPCPU-网络之路
命令执行的输出结果–命令执行成功后或者错误后的输出. 接下来,我们分别看下这几种方法。 一、os.system()和os.popen()的用法.
#38. 码农家园
自动化流程中常常需要用python调用terminal命令实现全流程自动化运行本文介绍常用的两个函数:os.system/os.popenos.system用法:[cc] if ...
#39. os.system执行系统命令 - 代码先锋网
os.system执行系统命令,代码先锋网,一个为软件开发程序员提供代码片段和技术文章 ... 定义和用法array_shift() 函数删除数组中第一个元素,并返回被删除元素的值。
#40. os用法總結:python中必須掌握的內置模塊os - 程序員宅基地
cmd = “sudo shutdown -h now”; os.system(cmd). 小白進階—python中os模塊用法. 一.os模塊概述python中的os 模塊包含普遍的操作系統功能,這個模塊不受 ...
#41. 【python】os模块的用法简介 - ITPub博客
6 os.system()函数用来运行shell命令。 7 os.linesep字符串给出当前平台使用的行终止符。例如,Windows使用'\r\n',Linux使用'\n'而Mac使用'\r'。
#42. Python执行系统命令的方法 - 运维之路
system (command) -> exit_status Execute the command (a string) in a subshell. 2、os.popen. 也是os模块下的一个函数,示例如下:. >>> import ...
#43. Python os.system 和os.popen的区别的更多相关文章 - BBSMAX
1>python调用Shell脚本,有两种方法:os.system()和os.popen(),前者返回值是脚本的 ... 这篇文章主要介绍了Python常用模块sys,os,time,random功能与用法,结合实例形式 ...
#44. python中shell執行知識點 - IT人
system 方法會建立子程式執行外部程式,方法只返回外部程式的執行結果。這個方法比較適用於外部程式沒有輸出結果的情況。 import os os.system('ls').
#45. python_os库用法总结
os.system(), 运行shell命令;可将指令以字符串/ 字符串拼接的形式喂进去 ... output: C:\Users\user\AppData\Local\Programs\Python\Python37 ...
#46. python基础模块三剑客:sys、os、shutil - ExASIC
有个同学知道os.system(),就回答说: os.system('cp a.v b.v') ... 举个例子,如果你想看看os.getcwd和os.popen的用法,你可以在terminal里如下操作:
#47. Python-调用系统命令的方法,快速完成任务【一点资讯】
注意:使用该函数经常会莫名其妙地出现错误,但是直接执行命令并没有问题,所以一般建议不要使用。 用法:os.system("command") ...
#48. Shell Scripting in Python - 在電梯裡遇見雙胞胎
Python 2.4 新增了subprocess 這個module,可以用來執行外部程式(也就是spawn 一個subprocess 或child ... 不過下面兩種用法在不同OS 下的行為是比較一致的:.
#49. Python——cmd调用(os.system阻塞处理)(多条命令执行)
调用系统命令还可以使用commends或subprocess模块,我目前没有使用到,不做记录。可到https://docs.python.org/查阅使用方法。 注意:多次调用cmd后系统会 ...
#50. Python 如何檢查檔案或目錄是否已經存在? - G. T. Wang
若要檢查目錄是否存在,則可使用 os.path.isdir ,用法都相同: import os # 要檢查的目錄路徑 folderpath = "/var/log" # 檢查目錄是否存在 if ...
#51. 编程 - 程序员资料
自动化流程中常常需要用python调用terminal命令实现全流程自动化运行本文介绍常用的两个函数:os.system/os.popenos.system用法: if os.path.exists(saved_root): ...
#52. Python 學習筆記: 檔案處理 - 小狐狸事務所
os.path 套件提供下列方法從作業系統取得檔案或目錄資訊, 使用前須用import os.path ... 也可以用isdir() 檢測, 在Windows 與Linux 用法相同, 例如: > ...
#53. Python调用系统命令的方法有哪些 - 亿速云
3、在父进程中调用wait(阻塞)去等待子进程结束。 返回0表示命令执行成功,其他表示失败。 用法: os.system("command") 2、os.popen ...
#54. python|os模組例子,用法大全 - ITW01
python —os模組例子和用法大全同樣,執行後重新開啟檔案檢視變化import os with open test.txt,r as f: lines ... os.system('cmd') #啟動dos.
#55. 使用Python执行系统命令的常见用法 - Linux公社
本文总结了使用Python 程序执行系统的几种命令,介绍各个模块的优缺点。 os.system模块 仅仅在一个子终端运行系统命令,而不能获取命令执行后的返回 ...
#56. 盘点Python中os模块的那些用法 - 技术圈
盘点Python中os模块的那些用法 ... 一、os模块概述. Python os模块包含普遍的操作系统功能。 ... import os name=os.system('dir') print(name).
#57. python 之os 模組的常見用法
在Python的標準庫os模組中包含普遍的作業系統功能. os 模組引入的 ... 7、os.system() 函數執行系統命令,linux下的shell命令或者windows下的cmd命令.
#58. Python os模块用法详解_微学苑
在本章的最后,我们来介绍一下os 模块中有关进程的一些接口函数。 ... Python os模块用法详解. 上一节 下一节 ... os.system("echo hello python") hello python 0
#59. os.chmod()函数的用法 - Python笔记
Python os 模块提供的chmod()函数,对应的功能就是Linux系统的chmod程序。os.chmod() ... using it raises an exception. mode Operating-system mode ...
#60. 用Python執行程式的4種方式,程式設計必備 - 有趣話題
call的使用方法和Popen基本一致,沒有太大的區別,在這裡只是多介紹一種使用方式。 用Python執行程式的4種方式,程式設計必備. 總結: os.system()用於簡單 ...
#61. Python执行系统命令的方法os.system(),os.popen() - 代码天地
Python 执行系统命令的方法os.system(),os.popen(),commands 最近在做那个测试框架的时候发现Python 的另一个获得系统执行命令的返回值和输出的类。
#62. Python - 如何调用系统命令或外部程序 - Jacob Zhong
... 程序调用的方式调用他的程序,只要传入相关参数即可~本文就讲一下在Python 下调用外部函数或者命令的几种方法~ os.system ❮ 这个函数和C 语.
#63. Python-調用系統命令的方法,快速完成任務 - 壹讀
在Python裏面,直接調用系統命令,可以快速的完成任務。一般使用os或者subprocess模塊,來執行系統命令。 ... 用法:os.system("command") ...
#64. Python - 调用终端执行命令- AI备忘录 - AIUAI
os.system - 只返回状态码,执行结果会输出到stdout,即输出到终端. 仅在Linux 中有效. 用法:.
#65. Python os模塊及用法 - Nulaw
大家可以根據自己的需求去查詢一下相關的用法,今天我只是盡量撿簡單的來講。 python 中使用 os .system方法時如何保存輸出?
#66. [使用Python "os.system"]调用非系统程序失败(阻塞)的问题
本文链接:https://blog.csdn.net/qq_38787108/article/details/101068123 使用Python os.system调用非系统程序失败问题描述问题原因问题解决问题描述 ...
#67. Python中os.system和os.popen區別- 菜鳥學院 - 菜鸟学院
Python 調用Shell,有兩種方法:os.system(cmd)或os.popen(cmd)腳本執行過程當中的輸出內容。實際使用時視需求狀況而選擇。 python 二者的區別是:sql ...
#68. Re: [問題] os.system問題?? - 看板Python - 批踢踢實業坊
在http://docs.python.org/lib/module-subprocess.html 有提到它試圖取代以下常用的呼叫: os.system os.spawn* os.popen* popen2.* commands.
#69. 需要在python中的os.system命令中使用变量 - Thinbug
我是python的新手,我需要在 os.system 命令中使用变量,这里是我的代码到目前为止 im.
#70. os walk模塊詳解Python中os模塊功能與用法詳解 - Hygpa
os.walk與os.path.walk的區別,以及如何返回空目錄-CSDN … python os.walk模塊_Python os 模塊詳解簡介os 就是“operating system”的縮寫,如 ...
#71. Python 的system("pause") - Zeroplex 生活隨筆
windows 的命令提示字元執行完會自動關閉,只好什麼語言都來個system(“pause”)。 import os. # blablabla ..... os.system("pause").
#72. Environment variables in Compose | Docker Documentation
docker-compose run -e DEBUG web python console.py. The value of the DEBUG variable in the container is taken from the value for the same variable in the ...
#73. Selenium
... environments from a central point, making it easy to run the tests against a vast combination of browsers/OS, then you want to use Selenium Grid.
#74. 1.2 需求
需求. image. 在大规模服务化之前,应用可能只是通过RMI 或Hessian 等工具,简单的暴露和引用远程服务,通过配置服务的URL地址进行调用,通过F5 等硬件进行负载均衡。
#75. 簡單的MySQL 使用教學 - 傑瑞窩在這
一個資料庫管理系統(DataBase Manage-ment System,DBMS)中可以有很多個 ... 器配置、使用者管理、備份等),可在Windows、Linux 和Mac OS 上使用。
#76. Python: How to get stdout after running os.system? - Stack ...
If all you need is the stdout output, then take a look at subprocess.check_output() : import subprocess batcmd="dir" result ...
#77. Pip install wfuzz - MARKUS K
On Linux, python and python3 are typically different binaries. wfuzz. ... We use VirtualBox to install a different Operating System.
#78. Open3d estimate normals - KYB
How I convert depth image (3D) using Open3D lib in python. none Function to compute the normals of a point cloud. The system is Kazhdan et al. estimate a ...
#79. Level Risk Sqlmap And [Q6IH5R]
'SQLMap'is a simple python based tool to exploit SQL injection ... we can run the os-commands, upload a file, read an existing file and what ...
#80. Maya python rename namespace
如果您正苦于以下问题:Python rename函数的具体用法? ... Python os system function allows us to run a command in the Python script, just like if I was ...
#81. Openwrt v2ray vmess - difremel
这一功能的常见用法是分流国内外流量,V2Ray 可以通过内部机制判断不同地区的流量,然后将它们 ... Categories > Operating Systems > Openwrt. ru Port : 443 UUID ...
#82. Import Pyrender - Tekno9
Trimesh方法的具体用法?Python trimesh. Pyrender implements the GLTF 2. >>> import numpy as np >>> import trimesh >>> import pyrender >>> import matplotlib.
#83. Python語法基礎
直接打印contents會多出一個空行,可以這樣打印 print(contens.rstrip()) ;. 有關文件絕對路徑:. Linux和OS X: file_path = '/home/.../xxx.txt' ...
#84. Ece454 git - New Nepali News
ece454 git Systems and Network Security Midterm Exam. rdd1. ... 點讚,您的評價將有助於我們的係統推薦出更棒本文整理匯總了C++中mm_free函數的典型用法代碼示例。
#85. Textinputformatter flutter
Mac OS High Sierra 10. jzhu085. dart - Flutter Materials import'dart:math ... Length check. none Flutter comes with a focus system that directs the keyboard ...
#86. Read rosbag python
Raspberry Pi OS is the offical operating system of the Raspberry Pi (previously known as Raspbian). This wrapper class uses ROS's python API rosbag ...
#87. 隐藏os.system生成的控制台输出 - Python中文网
我正在调用这段代码,但它在运行python脚本的控制台中生成一些输出(由于tee命令): os.system("echo 3 | sudo tee /proc/sys/vm/drop_caches") 此版本不生成控制台 ...
#88. linux下fdisk命令的用法详解_雪的季节 - 程序员秘密
linux下fdisk命令的用法详解 ((1)通过fdisk -l 查看机器所挂硬盘个数及分区情况;一、fdisk用法详解举例 ... Device Boot Start End Blocks Id System.
#89. Netty epoll vs nio - divebigapple.com
And the operating systems themselves also provide system calls in the ... 的使用这几天有空研究了下netty中的EpollEventLoopGroup和NioEventLoopGroup的用法, ...
#90. Python 速查手冊: 完整 38 個關鍵字的用法、超過 400 個範例及內建功能與標準程式庫的介紹 V2.00
完整 38 個關鍵字的用法、超過 400 個範例及內建功能與標準程式庫的介紹 V2.00 ... os 有以下的常用函數(function) ne, dst_dir_ fd=None)函數說明 os.system(co ...
#91. Oppo ozip to zip
工具下载: http 1. unfortunately i don't understand python, but from the source code i ... intelligent, and richly-designed Android-based mobile OS by OPPO.
#92. Python網路爬蟲實戰 - 第 179 頁 - Google 圖書結果
10 time.sleep(3) 11 OS = platform.system() 12 if (OS == u'Windows'): 13 os.system('cls') 14 else: 15 os.system('clear') 16 17 def linkBaidu(): 18 url ...
#93. Openwrt Virtualbox [CMJQ79]
The OpenWrt Project is a Linux operating system targeting embedded ... 刷上openwrt并使用python的drcom脚本(文章最后有github地址)来上网。
#94. Pytorch typeerror generator object is not callable - COME ...
Normally the evaluated statement should be: ', '. os. So python compiler takes “str Generators are functions you call to produce an iterable object. discuss ...
#95. Serverless 工程實踐| 快速搭建Kubeless 平臺 - 前端知识
支持Python、Node.js、Ruby、PHP、Go、.NET、Ballerina 語言編寫和自定義運行時。 ... $OS-amd64.zipunzip kubeless_$OS-amd64.zip. 解壓之後查看:.
#96. Hcitool lescan rssi
#loop to find if the MAC address given is available os. ... 具体用法太多了,就不说了,详细用法可以通过“hcitool –help”查看的,如下: 用法: hcitool [选项] ...
#97. Jetson nano yolov5 - Yurt wedding
Model size objects mAP Jetson Nano 2015 MHz RPi 4 64-OS 1950 MHz; ... 2019 · Below are pre-built PyTorch pip wheel installers for Python on Jetson Nano, ...
os.system python用法 在 Re: [問題] os.system問題?? - 看板Python - 批踢踢實業坊 的推薦與評價
: 而且還可以繼續按按鈕的嗎?
: 請幫幫忙!!
: 很需要解決這個問題
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 125.230.101.120
這個 subprocess 好像是看某前輩的 blog 才得知的東西... 這模組提供了更高階的
API,來試圖隱藏不同平台呼叫 process 的細節。 在
https://docs.python.org/lib/module-subprocess.html
有提到它試圖取代以下常用的呼叫:
os.system
os.spawn*
os.popen*
popen2.*
commands.*
至於詳細的用法,可以參考:
https://docs.python.org/lib/node533.html
會藉由簡單範例示範每種不同的呼叫方式...
而在原來的這個問題當中,原 po 一直遇到會出現一個終端機的問題
那是因為如果使用 os.system('test blah blah') 的呼叫,在 windows 會有以下行為:
你的 python 程式 ->(呼叫) cmd.exe ->(呼叫並傳參數 blah blah) test
而在 unix 會有以下行為:
你的 python 程式 ->(呼叫) shell ->(呼叫並傳參數 blah blah) 你想執行的程式
以上如果是使用 subprocess,則語法是
subprocess.call('test blah blah', shell=True)
其中 shell=True 若沒有指定則預設是 False
所以為了要避免出現終端機視窗,最好是可以跳過 cmd.exe/shell 直接呼叫命令
也就是流程變成:
你的 python 程式 ->(呼叫並傳參數 blah blah) test
那使用 subprocess 則就是(預設是 shell=False 所以在這邊省略):
subprocess.call('test blah blah'.split())
至於為何要切成 list 這個就扯到 popen / exec* 這一系列的呼叫實際運作的過程了
其實站在使用者立場可以不用管它,你就記得要切成 list 就對了
--
廢話好像太多了 囧>
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 140.127.40.50
※ 編輯: wawawa 來自: 140.127.40.50 (07/14 23:46)
※ 編輯: wawawa 來自: 140.127.40.50 (07/14 23:47)
... <看更多>