smart_interview_analyser / question_generator.py
asmithaaa's picture
Upload 40 files
438c749 verified
raw
history blame contribute delete
362 Bytes
import random
questions = [
"Tell me about yourself.",
"What are your strengths?",
"Explain Python programming language.",
"Describe a challenging project you worked on.",
"Why do you want this job?",
"Explain object oriented programming.",
"What is machine learning?"
]
def generate_question():
return random.choice(questions)