+ 1
Help needed for a code in Python3.
Can someone tell me a code in Python to take the whole calculation as a single input and print the answer.
2 Respuestas
+ 1
yeah, this is possible.
take a look at the following methods
split()
join()
index()
also
https://www.sololearn.com/discuss/1821032/?ref=app
+ 1
Divide it in segment like
a=input()
b=input()
c=input()
in input screen user can put value like
2
3
4
and program will process it as
a=2
b=3
c=4