“Como fazer uma pergunta em Python” Respostas de código

Como fazer uma pergunta em 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

Faça uma pergunta sobre Python

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

Como pedir a alguém seu nome em Python

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

Como fazer uma pergunta em Python

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

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

Respostas semelhantes a “Como fazer uma pergunta em Python”

Perguntas semelhantes a “Como fazer uma pergunta em Python”

Mais respostas relacionadas para “Como fazer uma pergunta em Python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código