“wie man dynamische Eingaben in Python nimmt” Code-Antworten

Akzeptieren Sie die Benutzereingabe in Python

#Take Integer Value
nval=int(input("Enter a number : "))
#Take String Value
sval=input("Enter a string : ")
#Take float value
fval=float(input("Enter a floating-point number : "))
Pleasant Petrel

wie man dynamische Eingaben in Python nimmt

import ast

def input_detect(s):
    return ast.literal_eval(input(s))

def swap(x, y):
    return y, x
aValid = 1
bValid = 1
a = input_detect("Enter an integer as a value for A: ")
if (str(type(a)) != "<class 'int'>"):
    print("Please take us seriously, we're watching you.\n")
    aValid = 0
    while (aValid == 0):
        a = input_detect("Enter an integer as a  value for A: ")
        if str(type(a)) != "<class 'int'>":
            print("Please take us seriously, we're watching you.\n")
            aValid = 0
        else:
            aValid = 1

# ! To be worked on:

b = input_detect("Now, Please enter the value for B: ")
print("A = " , a)
print ("B = ", b)

a, b = swap(a, b)

print("Now:\nA = ", a)
print("B = ", b)
Sleepy Seal

Ähnliche Antworten wie “wie man dynamische Eingaben in Python nimmt”

Fragen ähnlich wie “wie man dynamische Eingaben in Python nimmt”

Weitere verwandte Antworten zu “wie man dynamische Eingaben in Python nimmt” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen