Python without new line

Python Program to print content in same line while using multiple print statements.

Program or Solution

				
			
					
num1=int(input("Enter a First Number:"))
num2=int(input("Enter a Second Number:"))
print(num1,end='')
print(num2)

			
				
			

Program Explanation

by default print() function prints new line at the end, to avoid this you can use end parameter.

Here value of end parameter is space.

Comments

NAVEEN@03012000
for this program we need some video level program and also need some example