He was as ______(聪明的) as a monkey.

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了He was as ______(聪明的) as a monkey.相关的知识,希望对你有一定的参考价值。

clever

希望回答对您有所帮助,请及时采纳,多谢!追问

smart 不行吗?

追答

可以

追问

能说下它们的区别吗?谢谢

追答

clever既能修饰人,又能修饰动物
smart多表示英明

参考技术A clever, bright, smart都好。 参考技术B clever, as 形容词或副词原级 as 表示两者程度相当。翻译,他和猴子一样聪明!
望帮到你!
参考技术C smart

Executing modules as scripts

When you run a Python module with

python fibo.py <arguments>

the code in the module will be executed, just as if you imported it, but with the __name__ set to "__main__". That means that by adding this code at the end of your module:

if __name__ == "__main__":
    import sys
    fib(int(sys.argv[1]))

you can make the file usable as a script as well as an importable module, because the code that parses the command line only runs if the module is executed as the “main” file:

$ python fibo.py 50
1 1 2 3 5 8 13 21 34

If the module is imported, the code is not run:

>>>
>>> import fibo
>>>

This is often used either to provide a convenient user interface to a module, or for testing purposes (running the module as a script executes a test suite).

以上是关于He was as ______(聪明的) as a monkey.的主要内容,如果未能解决你的问题,请参考以下文章

what yang wanted to do when he got out of the spaceship was___ the joy with all the chinese 分析

Try to make as _____ misfakes as possible.

with as 如何工作

python with as的用法

导入模块:__main__ vs import as module

python with as用法