Exercice corrigé #41 : Programme qui détermine l'inverse d'un nombre | Python

  Рет қаралды 53,886

Hassan EL BAHI

Hassan EL BAHI

Күн бұрын

Dans cette vidéo, nous allons écrire un programme qui demande à l'utilisateur d'entrer un entier, puis le programme trouve et affiche l’inverse de ce nombre.
------------
Playlists
Exercices corrigés en Python : bit.ly/3sdkB6s
Cours : bit.ly/3hyErDY
------------
LinkedIn : / elbahihassan
Instagram : / hassan.el.bahi
Facebook page : / elbahihassanpage
Facebook groupe : / devcademy
Site Web: elbahihassan.com/
----------------------------------
🎵 Musiques :
Mexicana En Lelé by Le Gang / thisislegang

Пікірлер: 36
@imaneyassine5484
@imaneyassine5484 3 жыл бұрын
the best prof i ever seen in my life , thanks a lot!!!!!
@hassanbahi
@hassanbahi 3 жыл бұрын
Thank you very much 🙏🏼
@kydff8715
@kydff8715 3 ай бұрын
N = int(input("Veuillez saisir un nombre entier : ")) print("L'inverse de cette nombre",N,"est : ", end = "") while N != 0 : print(N % 10 , end = "") N //= 10
@Etienne_Legrand
@Etienne_Legrand Жыл бұрын
Tu expliques super bien. Merci pour tes vidéos.
@camip1519
@camip1519 Жыл бұрын
number = input ('veuillez saisir un nombre : ') c = ' ' for i in number : c = i + c print(c)
@موسيقىوعلوموثقافةحولالعالم
@موسيقىوعلوموثقافةحولالعالم 6 ай бұрын
Mais votre nombre est du type str pas int
@achourhellel424
@achourhellel424 2 жыл бұрын
def inverser_entier(nombre): # Si le nombre est négatif, on ajoute un "-" au début de y if nombre < 0: return int("-" + str(nombre)[1:][::-1]) else: return int(str(nombre)[::-1]) a = 123456789 # Inverse facile à voir print(inverser_entier(a))
@spider279
@spider279 2 жыл бұрын
Salam , mieux : def inverso(x): x=str(x) return int(x[::-1]) plus court ;)
@princeelisee3418
@princeelisee3418 7 ай бұрын
Merci
@موسيقىوعلوموثقافةحولالعالم
@موسيقىوعلوموثقافةحولالعالم 6 ай бұрын
Mais vous êtes changer le type du n de int a str et c,est faux je pense
@BilalBelkebir-io9rv
@BilalBelkebir-io9rv 11 ай бұрын
n = int (input ('entrez un nombre :')) for i in range(1,len(str(n))+1,1) : a = n % 10 print (a,end="") n = n // 10 this is the best way you can do it
@dahechbaraa8681
@dahechbaraa8681 3 жыл бұрын
vraiment bravo merci beaucoup monsieur
@soulaimagharsallah1835
@soulaimagharsallah1835 2 жыл бұрын
nbr=int(input("Tapez votre nombre: ")) n=str(nbr) print(n[::-1])
@belhommaniamajda9556
@belhommaniamajda9556 Жыл бұрын
Deux réels sont opposés si leur somme est égale à 0. Deux réels sont inverses si leur produit est égal à 1. 1- Écrire une fonction de prototype int SontInvOuOpp(float a, float b) où a et b sont deux réels, qui retourne 1 si a et b sont inverses, 0 si a et b sont opposés et −1si ni inverses ni opposés.
@mrelhadriyassin9907
@mrelhadriyassin9907 Жыл бұрын
n=int(input("Entrer un entier")) d=n c="" while d!=0: c+=str(d%10) d=d//10 print("inverse De " , n , "est :" , c)
@TribouletDuTieks
@TribouletDuTieks Жыл бұрын
#Exercice 41 a = input("Entrez un nombre: ") inverse = int(a[::-1]) print("L'inverse de ",int(a),"est",inverse)
@موسيقىوعلوموثقافةحولالعالم
@موسيقىوعلوموثقافةحولالعالم 6 ай бұрын
J'adore votre solution
@rezguiroi6503
@rezguiroi6503 Жыл бұрын
N = int(input("entre un numero N:")) inver = 0 while N != 0: inver = (inver * 10) + (N % 10) N = N // 10 if N == 0: print(f"L'invers de ce numero est: {inver}")
@hamzalafsioui
@hamzalafsioui 2 жыл бұрын
While True: N=input("entre le nombre") List(N) For i in range(len(N)+1): Y=N[::-1] Print (Y)
@sinnabalde4271
@sinnabalde4271 2 жыл бұрын
On attend la suite du cours en phyton
@ezriouil
@ezriouil 2 жыл бұрын
#Simple code de 3 line nbr=int(input("Tapez votre nombre: ")) for item in reversed(str(nbr)): print(item)
@easycode4093
@easycode4093 2 жыл бұрын
print(item,end="")
@manar26122
@manar26122 2 жыл бұрын
n=int(input('ENTREZ UN NOMBRE ?')) n=str(n) a=list(n) k='' for i in range (len(a)) : k=k+a[-1-i] print(int(k))
@sarakaddousi8750
@sarakaddousi8750 Жыл бұрын
Comment en intercaler un entier par exemple de 2 chiffres dans une chaine de 3 caracteres.
@dalybenamor6472
@dalybenamor6472 3 жыл бұрын
print('la valeur inverse est:', input('entreez le nombre:')[::-1])
@michelcusson2673
@michelcusson2673 7 ай бұрын
Si le nombre se termine par un zéro ex: 194560, le programme n'inverse pas le zéro. Donc il manque un chiffre pour l'inverse. Merci
@ABDELHAMID96
@ABDELHAMID96 3 жыл бұрын
#SAISI DUN NOMBRE N PAR LUTILISATEUR N=int(input("ENTRER VOTRE NOMBRE N = ")) #CONVERTION DU NOMBRE ENTIER N EN LISTE list_N=list(map(int,str(N))) #AFFICHAGE DE LA LISTE print(str(list_N)) #inversion de la liste list_N.reverse() #AFFICHAGE DE LA LISTE INVERSEE print(list_N) #convertir la liste inverser en NOMBRE entier result =int("".join(map(str, list_N))) #Affichage de linverse du nombre N print(result)
@hassanbahi
@hassanbahi 3 жыл бұрын
Merci pour le partage
@raedbc651
@raedbc651 Жыл бұрын
votre code est faux car par exemple si on prend le nombre 20 et on fait son inverse ça va nous donner 2
@barkache93
@barkache93 3 жыл бұрын
Et comment en language c ??
@pierreboutet7762
@pierreboutet7762 2 жыл бұрын
Ne fonctionne pas si le nombre se termine par zéro: 350 inversé est 53 ! En c#, pas de moi, mais sur le Web: static void Main(string[] args) { int reverse = 0; int number = 310; while (number > 0) { reverse = number % 10; Console.Write(reverse); number = number / 10; } Console.WriteLine(); }
@youseftrabelsi5559
@youseftrabelsi5559 2 жыл бұрын
:) you mean 053 hahahahahhaha
@ambrosesabbat9385
@ambrosesabbat9385 2 жыл бұрын
Le programme détermine l'image miroir d'un nombre pas son inverse.
@touhami3472
@touhami3472 2 жыл бұрын
On ne parle pas le même langage : INVERSE (a)= 1/a, a0 !!!
@chaymatayechi4034
@chaymatayechi4034 2 жыл бұрын
Inverse 356
Ice Cream or Surprise Trip Around the World?
00:31
Hungry FAM
Рет қаралды 11 МЛН
How Strong is Tin Foil? 💪
00:25
Brianna
Рет қаралды 69 МЛН
Python 101: Learn the 5 Must-Know Concepts
20:00
Tech With Tim
Рет қаралды 1,2 МЛН
4 Techniques pour Apprendre à Coder EFFICACEMENT
6:41
MXR CODES
Рет қаралды 36 М.
exercice 1, algorithme, si n est pair ou impair + python + C
8:00
Fonctions Python - Maîtrisez les fonctions en Python
31:18
MaxCode
Рет қаралды 1,8 М.
Ice Cream or Surprise Trip Around the World?
00:31
Hungry FAM
Рет қаралды 11 МЛН