Python Basics
#split() will be used to enter the multiple strings seperated by spaces at once
#in multiple variables while map is used to enter the numberic value
x, y = input("enter two strings").split()
print(x, y)
m, n = map(int, input("enter two numbers").split())
print(m, n)
#input
#bhaskar varshney
#2 3
Comments
Post a Comment