+ 3
How can I do this?
So if the input is "Hey" , the output should be "Hey" too and if the input is "Test1" , the output should be "Testing". How can I do this? Could someome code this for me?
4 Respostas
+ 5
The easiest way to do it would be taking in input using the input() function, storing it in a variable, and using an if/elif/else chain to test its value and print something accordingly
+ 1
Yup, if/elif/else would do the job.
0
Thanks <3