top of page

Input From User In Python

Writer's picture: Code CrazeCode Craze



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)

3 views0 comments

Recent Posts

See All

Comments


bottom of page