“Wiele funkcji w Pythonie z metodą wejściową” Kod odpowiedzi

Wpisz wiele wartości w Pythonie

mA,mB = map(float,input().split()) #if float data type
mA,mB = map(int,input().split()) #if int data type
Rajanit Navapara

Jak wziąć wielokrotną formę wejściową Python

n=input()# no of inputs
n =int(n)
for i in range(n):
  y=input()
  print(y)
Hami yestia ta honi bro

Wiele funkcji w Pythonie z metodą wejściową

#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

Odpowiedzi podobne do “Wiele funkcji w Pythonie z metodą wejściową”

Pytania podobne do “Wiele funkcji w Pythonie z metodą wejściową”

Więcej pokrewnych odpowiedzi na “Wiele funkcji w Pythonie z metodą wejściową” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu