“Fonction dans Python avec méthode d'entrée” Réponses codées

entrée python

#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')
Ruukasu

Fonction d'entrée Python

make_a_variable_name = input("Put whatever question, or prompt as Python calls it, that the person will answer here.")
Faithful Ferret

Fonction dans Python avec méthode d'entrée

#Function in python

def identity(age):
    print("You are "+str(age)+" Years old")
identity(input("Type your age: "))

def id(name):
    print("Hello "+name+"."+"You are our valued customer")
    print("Have a nice Day "+name)
id(input("Type your name: "))

# if you want to use the input method to get the user info more
# than one time then you should make two function.
# In one function you can't get the multiple results.if anyone can find
# please add to greeper ans.
YEASIN ARAFAT

Réponses similaires à “Fonction dans Python avec méthode d'entrée”

Questions similaires à “Fonction dans Python avec méthode d'entrée”

Plus de réponses similaires à “Fonction dans Python avec méthode d'entrée” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code