我想使用带变量的 wget 作为参数

I want to use wget with variable for parameter

我正在使用 google colaboratory,它给我错误消息

File "<ipython-input-1-41d5736708c2>", line 14 wget --no-check-certificate foo -O bar ^ SyntaxError: invalid syntax

这是我的代码

foo = 'https://example.com'
bar = '/tmp/' + foo.rsplit('/')[-1]
wget --no-check-certificate foo -O bar

我看过整个教程视频,但每个人都在使用 wget https://example.com 而不是 wget (variable) 是否可以将 wget 与定义的变量一起使用?

为命令插入变量:

!wget --no-check-certificate {foo} -O {bar}