标签:笔试题 会议室 print python -- interview flow 结果 执行
def workflow():
print("第一步:打开")
print("第二步:输入")
print("第三步:执行")
print("第四步:结果")
workflow()
print("---------------")
def interview(interviewee):
print (‘求职者是‘+interviewee)
print(‘请把‘+interviewee+‘带到2号会议室‘)
print(‘请‘+interviewee+‘先做笔试题‘)
print(‘让测试经理来面试‘+interviewee)
print(‘再让技术总监面试‘+interviewee)
interview(‘小胖‘)
标签:笔试题 会议室 print python -- interview flow 结果 执行
原文地址:https://www.cnblogs.com/tangbohu2008/p/12693195.html