Question: Problem Description Write a program to build a flashcard using a class in python. A flashcard is a card having information on both sides, which
Problem Description Write a program to build a flashcard using a class in python. A flashcard is a card having information on both sides, which can be used as an aid in memorization. Flashcards usually have a question on one side and an answer on the other. Create flashcards that will be having a word and its meaning. Instructions - Take the word and its meaning as input from the user. - Create a class named flashcard, use the _init_() function to assign values for Word and Meaning. - Now we use the ______() function to return a string that contains the word and meaning. - Store the returned strings in a list named flash. - Use a while loop to print all the stored flashcards. Output example: OOP (Object Oriented Programming DBMS (Data Base Management System) ROM (Read Only Memory)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
