February 2021 0 135 Report
Bonjour, pouvez-vous corriger mon résumé sur la nouvelle "True Love"par Isaac Asimov en Anglais S'il vous plait.(Et faire le correctement je vous en prie!!).Merci pour votre aide.Et vous pouvez utiliser les mots liaisons si c'est possible. *Milton has never married, so he’s going to find true love.

*Joe going to help him (Milton) with the Multivac-complex so he can reach the data banks of every human being in the world.

*Milton programs Joe to find a woman over 25, all older than Forty. Then eliminate all with an IQ under 120; all with a height under 150 centimeters and over 175 centimeters. He eliminated women with living children, women with various genetic characteristics, no red hair. And, Milton didn’t want a language problem.

*Milton program Joe to find a beautiful woman with holographs what Milton brings.

*Milton paid no attention to Joe, Milton considers him like a machine.

*The problem is Milton didn’t find his right woman, who looks the best to him, so they don’t please him.

*Joe proposes Milton needs a girl who is a personal, emotional, temperamental fit to him.

*Joe and Milton thought so like each other, they’re almost like talking to another self. Their personalities have come to match perfectly.
Joe thinks the plan Milton is devilish because he only used his program data bank to find someone for Milton. However, Joe and Milton became so similar that in the end, Joe behaves like Milton and was kind of happy to have found true love for himself.
At the beginning of the story only Milton is dishonest ( he arranged the computer to do things for his own interest ). In that way, he tries to manipulate people. But in the end, we have the feeling that « his virtual friend Joe » is the one who has found true love. So, despite all his plans, his organization, Milton didn’t find true love. We could say that this story has a moral: his plan was devilish but it didn’t succeed.
Please enter comments
Please enter your name.
Please enter the correct email address.
You must agree before submitting.
More Questions From This User See All
Bonjour, quelqu'un pourrait m'aider s'il vous plait en informatique . Merci pour votre aide. Ex 1 : Sans utiliser les fonctions min ou max, écrire une fonction recherche_min_max qui prend en paramètre un tableau de nombres non triés tab, et qui renvoie la plus petite et la plus grande valeur du tableau sous la forme d’un dictionnaire à deux clés "min" et "max". Les tableaux seront représentés sous forme de liste Python. Exemples : >>> tableau = [0, 1, 4, 2, -2, 9, 3, 1, 7, 1] >>> resultat = recherche_min_max(tableau) >>> resultat {'min': -2, 'max': 9} >>> tableau = [] >>> resultat = recherche_min_max(tableau) >>> resultat {'min': None, 'max': None} Ex 2 : On dispose d’un programme permettant de créer un objet de type PaquetDeCarte, selon les éléments indiqués dans le code ci-dessous. Compléter ce code aux endroits indiqués par #A compléter, puis ajouter des assertions dans le constructeur de Carte, ainsi que dans la méthode get_carte_at(). Exemple : >>> un_paquet = PaquetDeCarte() >>> un_paquet.remplir() >>> une_carte = un_paquet.get_carte_at(20) >>> print(une_carte.get_nom() + " de " + une_carte.get_couleur()) 7 de coeur class Carte: def __init__(self, c, v): """Initialise couleur (entre 1 à 4), et valeur (entre 1 à 13)""" self.couleur = c self.valeur = v def get_nom(self): """Renvoie le nom de la Carte As, 2, ... 10, Valet, Dame, Roi""" if ( self.valeur > 1 and self.valeur < 11): return str(self.valeur) elif self.valeur == 11: return "Valet" elif self.valeur == 12: return "Dame" elif self.valeur == 13: return "Roi" else: return "As" def get_couleur(self): """Renvoie la couleur de la Carte (parmi pique, coeur, carreau, trefle)""" return ['pique', 'coeur', 'carreau', 'trefle'][self.couleur - 1] class PaquetDeCarte: def __init__(self): self.contenu = [] def remplir(self): """Remplit le paquet de cartes, le remplissage ne fait pas forcément de manière aléatoire""" #A compléter def get_carte_at(self, pos): """Renvoie la Carte qui se trouve à la position donnée""" #A compléter
Responda

Helpful Social

Copyright © 2025 ELIBRARY.TIPS - All rights reserved.