About 2,180,000 results
Open links in new tab
  1. Generating Random Quiz Files - DEV Community

    Dec 7, 2023 · In this project, you will learn how to read and write to files while creating random quiz files. You will broaden your knowledge of the random module by using it to shuffle questions and answers. By the end of this project, you will have automated the creation of random quiz files. What you will gain from this project:

    Missing:

    • Presentation

    Must include:

  2. GitHub - malshehhi95/AI-Quiz-Generator: The Quiz Generator, is a Python ...

    Oct 31, 2023 · The Quiz Generator, is a Python tool that creates quizzes from PowerPoint slides using OpenAI's GPT-3.5 model. It was tested at HCT and offers a user-friendly GUI, supporting various question types and educational standards.

  3. Quiz-game-using-python/Presentation Slides.pptx at main ...

    The Quiz Game is an interactive Python console application where players can test their knowledge across various topics. Using a combination of functions, loops, and conditionals, the game presents...

  4. Generating Random Quiz Files _ automate the boring stuff with Python

    Oct 29, 2022 · # Generate 35 quiz files. # You can change to any number you want: for quizNum in range(35): # TODO: Create the quiz files. quizFile = open(f'capitalquiz_{quizNum + 1:02}.txt', 'w') # TODO: Write out the header for the quiz. quizFile.write('Name:\n\nDate:\n\nPeriod:\n\n') quizFile.write(f'State Capitals Quiz (form_{quizNum + 1:02})'.center(50

    Missing:

    • Presentation

    Must include:

  5. python - Random quiz generator - Stack Overflow

    Nov 12, 2015 · # Create the quiz and answer key files. quizFile = open('capitalsquiz%s.txt' % (quizNum + 1), 'w') answerKeyFile = open('capitalsquiz_answers%s.txt' % (quizNum + 1), 'w') # Write out the header for the quiz. quizFile.write('Name:\n\nDate:\n\nPeriod:\n\n') quizFile.write((' ' * 20) + 'State Capitals Quiz (Form %s)' % (quizNum + 1)) .

    Missing:

    • Presentation

    Must include:

  6. Build a Quiz Application With Python

    Feb 2, 2025 · In this tutorial, you’ll build a Python quiz application for the terminal. You’ll start by developing a basic app capable of asking questions, collecting answers, and checking correctness.

  7. LinkedInLearning/python-project-build-a-quiz-application-2476116

    Join Joe Marini in this course, as he shows you how to use Python to build a quiz-taking program, step by step, explaining how to build and test each feature as you go along.

  8. Random Quiz Generator in Python | Shivanik5 - Coders Packet

    Random quiz generator in Python is used to conduct small quiz test online. This code can be helpful to school teachers and lecturers to take test.

  9. Automate The Boring Stuff: Random Quiz Generator

    Oct 20, 2018 · # Generate 5 quiz files. # Create the quiz and answer key files. quizFile = open('capitalsquiz%s.txt' % (quizNum+1), 'w') answerFile = open('capitalsquiz_answers%s.txt' % (quizNum+1), 'w') # Write out the header for the quiz. quizFile.write('Capitals Quiz #%s' % (quizNum+1) + '\nName:\nDate:\n\n') quizFile.write('What is the capital of:\n')

  10. Generating Random Quiz Files - Medium

    Dec 7, 2023 · In this project, you will learn how to read and write to files while creating random quiz files. You will broaden your knowledge of the random module by using it to shuffle questions and...

    Missing:

    • Presentation

    Must include:

Refresh