Différences entre les versions de « Utilisateur:Manonblanc »
Aller à la navigation
Aller à la recherche
Ligne 1 : | Ligne 1 : | ||
+ | * remplacer toutes les lettres d'une phrase, ici pangramme, par un mot* | ||
+ | |||
+ | sample_string = "z o e m a g r a n d e f i l l e v e u t q u e j e b o i v e c e w h i s k y d o n t j e n e v e u x p a s " | ||
+ | char_to_replace = {'a': 'rêver', | ||
+ | 'b': 'super', | ||
+ | 'c': 'ah bon', | ||
+ | 'd': 'melodie', | ||
+ | 'e': 'pluie', | ||
+ | 'f': 'une', | ||
+ | 'g': 'de', | ||
+ | 'h': 'la', | ||
+ | 'i': 'mais', | ||
+ | 'j': 'je', | ||
+ | 'k': 'tu', | ||
+ | 'l': 'il', | ||
+ | 'm': 'elle', | ||
+ | 'n': 'raclette', | ||
+ | 'o': 'merveilleux', | ||
+ | 'p': 'c est', | ||
+ | 'q': 'ravioli', | ||
+ | 'r': 'rocambolesque', | ||
+ | 's': 'fenêtre', | ||
+ | 't': 'plusieurs', | ||
+ | 'u': 'une seule', | ||
+ | 'v': 'myrtille', | ||
+ | 'w': 'bleues', | ||
+ | 'x': 'vert', | ||
+ | 'y': 'fleurit', | ||
+ | 'z': 'mélancolique' | ||
+ | } | ||
+ | |||
+ | sample_string = sample_string.translate(str.maketrans(char_to_replace)) | ||
+ | print(sample_string) | ||
+ | |||
+ | |||
+ | ------------------------------------- | ||
<syntaxhighlight lang="python"> | <syntaxhighlight lang="python"> | ||
# -*- coding: utf8 -*- | # -*- coding: utf8 -*- |
Version du 20 décembre 2021 à 00:28
- remplacer toutes les lettres d'une phrase, ici pangramme, par un mot*
sample_string = "z o e m a g r a n d e f i l l e v e u t q u e j e b o i v e c e w h i s k y d o n t j e n e v e u x p a s " char_to_replace = {'a': 'rêver',
'b': 'super', 'c': 'ah bon', 'd': 'melodie', 'e': 'pluie', 'f': 'une', 'g': 'de', 'h': 'la', 'i': 'mais', 'j': 'je', 'k': 'tu', 'l': 'il', 'm': 'elle', 'n': 'raclette', 'o': 'merveilleux', 'p': 'c est', 'q': 'ravioli', 'r': 'rocambolesque', 's': 'fenêtre', 't': 'plusieurs', 'u': 'une seule', 'v': 'myrtille', 'w': 'bleues', 'x': 'vert', 'y': 'fleurit', 'z': 'mélancolique' }
sample_string = sample_string.translate(str.maketrans(char_to_replace)) print(sample_string)
# -*- coding: utf8 -*-
voix_un = int(input("Enter first number "))
voix_deux = int(input("Enter second number "))
print("\n")
print("First Number:", voix_un)
print("Second Number:", voix_deux)
x = voix_un + voix_deux
if x == 2:
print("100 %")
elif x == 12 :
print ("100%")
elif x == 3 :
print ("90%")
elif x == 13 :
print ("90%")
elif x == 4 :
print ("80%")
elif x == 14 :
print ("80%")
elif x == 5 :
print ("70%")
elif x == 15 :
print ("70%")
elif x == 6 :
print ("60%")
elif x == 16 :
print ("60%")
elif x == 7 :
print ("50%")
elif x == 17 :
print ("50%")
elif x == 8 :
print ("40%")
elif x == 18 :
print ("40%")
elif x == 9 :
print ("30%")
elif x == 19 :
print ("30%")
elif x == 10 :
print ("20%")
elif x == 20 :
print ("20%")
elif x == 11 :
print ("10%")
else :
print ("bizarre")
scale map processing java function