taking String input from user in python
User_Name = str(input("What is your name:- "))
print("Hi "+User_Name+" It's me python")
taking String input from user in python
User_Name = str(input("What is your name:- "))
print("Hi "+User_Name+" It's me python")
user input python
input = input("Enter your value: ")
print(input) # prints the input
python input
# Now,we're using it with floats
a = float(input("Input first number: "))
b = float(input("Input second number: "))
c = float(input("Input third number: "))
if a > b:
if a < c:
median = a
elif b > c:
median = b
else:
median = c
else:
if a > c:
median = a
elif b < c:
median = b
else:
median = c
print('The median is: ', median)
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us