Input From User In PythonCode CrazeFeb 8, 20231 min reada, b, c, d, e, f = input('Enter number : ').split() print('Value of a : ' + a)print('Value of b : ' + b)print('Value of c : ' + c)print('Value of d : ' + d)print('Value of e : ' + e)print('Value of f : ' + f)
a, b, c, d, e, f = input('Enter number : ').split() print('Value of a : ' + a)print('Value of b : ' + b)print('Value of c : ' + c)print('Value of d : ' + d)print('Value of e : ' + e)print('Value of f : ' + f)
Comments