0
How i can get space on my each sting output
For eg my input is {who ru} then output should like this ( some other)
7 Antworten
0
you want space start of string?
0
No between two like a== some
B== other when I will give two input then output will be like some other
0
print("some","other",sep=" ")
this?
0
Noise= str( input ())
If Noise== grr:
Print ("Lion")
If Noise== Rawr:
Print ( "Tiger")
Something like this
0
If input is grr Rawr output should be Lion Tiger
0
Noise=input()
Noise=Noise.split()
dict1={"grr":"Lion","Rawr":"Tiger"}
op=""
for i in Noise:
op+=dict1[i]+" "
op=op[:-1]
print(op)
0
That you