Example & Tutorial understanding programming in easy ways.

What is the purpose of the end in Python ?

We can set the ending point of every line with the use of the end in python.

Example:

1.

print("Hello")

print("World")

// it will print the following output

Hello

World

2.

print("Hello",end='_')

print("World")

// it will print the following output

Hello_World

Read More →