📅  最后修改于: 2023-12-03 15:01:27.377000             🧑  作者: Mango
The IT Crowd 是一部英国情境喜剧电视剧,由 Graham Linehan 创作,于 2006 年首播。该剧围绕 IT 部门三个不同个性的角色展开,剧情轻松幽默,非常适合程序员以及科技相关从业人员观看,现已成为经典。
IT 部门里有三个员工:Roy Trenneman、Maurice Moss 和 Jen Barber。他们三个构成了这个部门的整个人员。Roy 和 Moss 是两个 Geek,而 Jen 更注重外在形象。他们经常遇到公司内外的种种奇怪情况,安慰因电脑问题而烦恼的职员,以及应对种种怪客,跟上新的技术。
三位主角有着各自不同的特点:Roy Trenneman 是一个懒散的“渗透测试员”,也叫“防火墙”,他总是使用最懒散的方式完成工作。 Maurice Moss 是一个 Geek,拥有深入了解计算机和网络的能力,但同时在社交方面很木讷。而 Jen Barber 则是一位机遇和运气都很好的尸位素餐者,实际上她对 IT 一窍不通。三个人都有着各自的独特风格,常常因为对待问题的态度而发生趣事。
以下是该剧中一些经典的台词:
在 Netflix 上观看该集剧:
def turn_it_off_and_on_again(device):
"""
Function to turn off and on a device.
Args:
device: A string representing the name of the device.
Returns:
A string representing the status of the device after turning off and on again.
"""
print(f"Turning off {device}...")
print(f"{device} is off now.")
print(f"Turning on {device}...")
print(f"{device} is on now.")
return f"{device} is working properly now."
该片段演示了一个 Python 函数,该函数尝试重启一个设备,并返回设备的状态。这是该剧中使用的经典语句之一,也是程序员们经常提到的一句话。