Answers for "function with input python"

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
3

input python

name = input("Enter your name: ")

#Printing the variable (name)
print("hello",name)
Posted by: Guest on September-30-2020
1

input python

# Input statements are used to ask questions to the user

text = input("Enter your name: ")

# printing the variabale 
print(text)
Posted by: Guest on December-14-2020
0

input in python

l=list(map(int,input().split()))
Posted by: Guest on June-27-2021
0

python functions with input

# to greet somebody with their name you do like the following
def greet(name):
  print(f"Hello, {name} How do you do?")
  
greet("John Due")	# you will get Hello, John Due How do you do?

# if you wanna get the input from the user you can do that too!
name = input("Please enter your name: ")
greet(name)       # this takes the input from the user and then greets the user
Posted by: Guest on January-02-2021

Code answers related to "function with input python"

Python Answers by Framework

Browse Popular Code Answers by Language