“Comment poser une question dans Python” Réponses codées

Comment poser une question dans Python

import tkinter as tk
from tkinter import simpledialog

ROOT = tk.Tk()

ROOT.withdraw()
# the input dialog
USER_INP = simpledialog.askstring(title="Test",
                                  prompt="What's your Name?:")

# check it out
print("Hello", USER_INP)
Rich Raccoon

Posez une question sur Python

Question = input("your question")
if Question == ("yes")
	print ("well done")
elif Question == ("no")
	print ("try again")
Long Lion

Comment demander à quelqu'un son nom dans Python

name=input("what is your name")
Lucky Lizard

Comment poser une question dans Python

variable = input('How are you doing?')

#for a number response
variable1 = int(input('How old are you?'))
Easy Echidna

Réponses similaires à “Comment poser une question dans Python”

Questions similaires à “Comment poser une question dans Python”

Plus de réponses similaires à “Comment poser une question dans Python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code