to print the whole name but only single name is printing.
JavaScript
x
3
1
name = input(raw_input())
2
print ('Hello', name,'! You just delved into python.')
3
Input
JavaScript
1
3
1
Ross
2
Taylor
3
Output
JavaScript
1
2
1
Ross
2
Expected Output
JavaScript
1
2
1
Hello Ross Taylor! You just delved into python.
2
Advertisement
Answer
You can’t do
JavaScript
1
2
1
name = input(raw_input())
2
You can either do
JavaScript
1
2
1
name = input()
2
or
JavaScript
1
2
1
name = raw_input()
2