📅  最后修改于: 2023-12-03 15:33:47.906000             🧑  作者: Mango
Probotiq 是一家专注于为企业提供智能自动化解决方案的公司,目前正在寻找实习生加入我们的团队。我们需要的实习生将会以编程为主要工作内容,与我们的研发团队一起协作开发各种智能自动化产品。
请将个人简历和作品集发送至 recruit@probotiq.com,我们会尽快安排面试,感谢您的关注!
Code Snippet:
class Probotiq:
def __init__(self, job_title, requirements, benefits):
self.job_title = job_title
self.requirements = requirements
self.benefits = benefits
def offer_job(self):
print("Probotiq is looking for intern to work as " + self.job_title)
print("Requirements: " + ", ".join(self.requirements))
print("Benefits: " + ", ".join(self.benefits))
使用示例:
job_title = "Programmer Intern"
requirements = ["Proficient in at least one programming language",
"Solid computer foundation including data structure and algorithms",
"Interest in automation technology"]
benefits = ["competitive salary", "flexible working hours", "practical experience in the field of automation technology"]
probotiq_job = Probotiq(job_title, requirements, benefits)
probotiq_job.offer_job()
输出:
Probotiq is looking for intern to work as Programmer Intern
Requirements: Proficient in at least one programming language, Solid computer foundation including data structure and algorithms, Interest in automation technology
Benefits: competitive salary, flexible working hours, practical experience in the field of automation technology