“Cómo hacer una pregunta en Python” Código de respuesta

Cómo hacer una pregunta en 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

Haga una pregunta sobre Python

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

Cómo pedirle a alguien por su nombre en Python

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

Cómo hacer una pregunta en Python

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

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

Respuestas similares a “Cómo hacer una pregunta en Python”

Preguntas similares a “Cómo hacer una pregunta en Python”

Más respuestas relacionadas con “Cómo hacer una pregunta en Python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código