2 Answers
+ 7
go throug the comment section of INPUT lesson , there are many examples of multiple inputs
https://www.sololearn.com/learn/JUMP_LINK__&&__Python__&&__JUMP_LINK/2426/
//have a look at this simple example :
a = input("Enter something please: ")
print(a)
b = input("Enter something again please: ")
print(b)
+ 6
Yes you can by either putting multiple input() statements and entering your inputs on separate lines or splitting your input.