Answers for "python input box"

93

python input

#Collecting The Input As A Variable:#
name = input('Please enter your name: ')
#Printing The Variable:#
print(name)
#Checking The Variable And Printing Accordingly:#
if name == 'Joe':
  print('Joe Mama')
Posted by: Guest on August-09-2020
17

python input

# The function 'input()' asks the user for input
myName = input()
Posted by: Guest on February-21-2020
10

python how to use input

#basic user handling for begginers

x = input("your question here") # when someone types something here that answer will be saved and be used for later

# for example 
print(x)
Posted by: Guest on March-25-2020
3

input in python

# First, let's start with a simple input function.
input("What's your name?: ") #This will ask you what is your name, and you can input anything you want.
#The above code is simple, and theres not much you can do with it.

# Let's get a little harder!
name = input("What is your name? ") # Just adding a variable doesn't look like much, but it goes a long way!
print("Hello," , name , ", I'm dad!") # THis will print Hello [your name] I'm dad when the user inputs a name.

# Let's make this a little more advanced!
name = input("What is your name? )
if name == "Dad": # Now if sombody inputs 'Dad' as there name:
	print("Hi dad I'm- wait a minute...") # it will say this
else: # If a user prints anything else:
	print("Hi" , name , "I'm dad!") # It will output this!

# What if I want to add multiple names? Well, that's entirly possible, with the elif statment
if name == "Dad": # If the user inputs "Dad" as their input:
	print("Hi Dad, I'm- stop trying to trick me D:<") # It will output this
elif name == "Doggo": # If the name is "Doggo":
	print("Hi doggo- wait your not supposed to talk?") # It will output this:
# Using the elif statment, we can make an entirley different with only one question asked
else:
	print("Hello, ", name, "!") # We always end an if statment with an else one.

# Hope this helped! :D
Posted by: Guest on December-24-2020
0

python hoe to make a text box

import tkinter as tk

root= tk.Tk()

canvas1 = tk.Canvas(root, width = 400, height = 300,  relief = 'raised')
canvas1.pack()

label1 = tk.Label(root, text='Calculate the Square Root')
label1.config(font=('helvetica', 14))
canvas1.create_window(200, 25, window=label1)

label2 = tk.Label(root, text='Type your Number:')
label2.config(font=('helvetica', 10))
canvas1.create_window(200, 100, window=label2)

entry1 = tk.Entry (root) 
canvas1.create_window(200, 140, window=entry1)

def getSquareRoot ():
    
    x1 = entry1.get()
    
    label3 = tk.Label(root, text= 'The Square Root of ' + x1 + ' is:',font=('helvetica', 10))
    canvas1.create_window(200, 210, window=label3)
    
    label4 = tk.Label(root, text= float(x1)**0.5,font=('helvetica', 10, 'bold'))
    canvas1.create_window(200, 230, window=label4)
    
button1 = tk.Button(text='Get the Square Root', command=getSquareRoot, bg='brown', fg='white', font=('helvetica', 9, 'bold'))
canvas1.create_window(200, 180, window=button1)

root.mainloop()
Posted by: Guest on June-15-2020
1

how to use input in python

#The input command will popup/print the text placed inside the brackets.
#After the text you can type anything and press enter.
#Then the stuff written in the ansfer field will be saved as the function value.

x = input("write anything after this: ")
print(x)

#This code will first print the stuff written in input (write anything after this:).
#Then it will store the text as the x value.
#Then it will print it.
Posted by: Guest on May-07-2021

Browse Popular Code Answers by Language