gpt4 book ai didi

python - 将统计数据与变量一起使用

转载 作者:行者123 更新时间:2023-11-30 23:17:21 27 4
gpt4 key购买 nike

我正在编写一个脚本来检查 Linux 中文件和文件夹的八进制权限。我正在努力处理这行代码:

stat -c %a check

Check 是来自用户的原始输入,例如 /home。当我在终端中运行脚本时,执行上面的行时会收到以下错误消息:

file "check.py", line 17
stat -c %a check
^
SyntaxError: invalid syntax

我还尝试将检查放在括号中,然后得到:

Traceback (most recent call last):
File "check.py", line 34, in <module>
main()
File "check.py", line 31, in main
folderexists(check)
File "check.py", line 17, in folderexists
stat -c %a (check)
NameError: global name 'c' is not defined

最佳答案

Python 有自己的调用来检查统计数据

>>> import os
>>> check=raw_input("what you want? ")
what you want? setup.py
>>> os.stat(check)
posix.stat_result(st_mode=33204, st_ino=447354005, st_dev=35L, st_nlink=1, st_uid=1000, st_gid=1000, st_s

关于python - 将统计数据与变量一起使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27326093/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com