Vocabulary Lesson 1


Highlight starting at answer1='d' all the way to the end of this page. Then right-click on the mouse and click copy. Start Python Idle, click File, drop down to New File, and paste the codes. Next, click "Run," then "Run Module." Save it with any name you like.

The coding questions below are for "matching." You must answer all questions correctly in each session in order to finish it, or else it will keep looping. You will have to start answering all over again until you get them all matched up correctly.

answer1='d'

yrans1=''


answer2='e'

yrans2=''


answer3='f'

yrans3=''


answer4='b'

yrans4=''


answer5='g'

yrans5=''


answer6='c'

yrans6=''


answer7='a'

yrans7=''


answer8='h'

yrans8=''


answer9='i'

yrans9=''


answer10='j'

yrans10=''


print('')

print('A = Insomniac\nB = Emigrated\nC = Soliloquy\nD = Autocrat\nE = Charisma\nF = Conscience\nG = Conscious\nH = Immigrated\nI = Conscientious\nJ = Deterrence')

print('')

print('Choose the correct choice for each meaning.')

print('Answers must be typed in lowercase.')

print('')

      

while yrans1 != answer1 or yrans2 != answer2 or yrans3 != answer3 or yrans4 != answer4 or yrans5 != answer5 or yrans6 != answer6 or yrans7 != answer7 or yrans8 != answer8 or yrans9 != answer9 or yrans10 != answer10:

    yrans1=input('A ruler who has absolute power. ')

    print('')

    yrans2=input('The ability to attract the attention and admiration of others, and to be seen as a leader. This means you have ______. ')

    print('')

    yrans7=input('A person who is regularly unable to sleep. ')

    print('')

    yrans3=input('An inner feeling or voice viewed as acting as a guide to the rightness or wrongness of one\'s behavior. ')

    print('')

    yrans4=input('To leave one\'s own country in order to settle permanently in another. Remember, it\'s the country you are leaving from.\nExample, I ______ from India. ') 

    print('')

    yrans5=input('Aware of and responding to one\'s surroundings; awake. ')

    print('')

    yrans6=input('An act of speaking one\'s thoughts aloud when by oneself or regardless of any hearers, especially by a character in a play.\nAt its most basic level refers to the act of talking to oneself, and more specifically denotes the solo utterance of an actor in a drama. ')

    print('')

    yrans8=input('To come to live permanently in a foreign country. Remember, it\'s the country you are coming into.\nExample, I ______ to the U.S. in 1998. ')

    print('')

    yrans10=input('The action of discouraging an action or event through instilling doubt or fear of the consequences.\nExample, nuclear missiles remain the main ______ against possible aggression. ')

    print('')

    yrans9=input('Governed by conscience; controlled by or done according to one\'s inner sense of what is right; principled.\nExample: She\'s a ______ judge, who does not let personal prejudices influence her decisions.\nIt also can mean careful and painstaking; particular; meticulous; scrupulous. Example: He is a _____ worker. ')

    print('')

    if yrans1 != answer1 or yrans2 != answer2 or yrans3 != answer3 or yrans4 != answer4 or yrans5 != answer5 or yrans6 != answer6 or yrans7 != answer7 or yrans8 != answer8 or yrans9 != answer9 or yrans10 != answer10:

        print('')

        print('A = Insomniac\nB = Emigrated\nC = Soliloquy\nD = Autocrat\nE = Charisma\nF = Conscience\nG = Conscious\nH = Immigrated\nI = Conscientious\nJ = Deterrence')

        print('')

        print('Sorry, you got one or more choices wrong.')

        print('Choose the correct choice for each meaning.')

        print('Try again. Must match all answers correctly for each session.')

        print('')

print('')        

print('Fantastic, you matched them all up!')