how to print in same line in python code example

Example 1: print no new line python

print('*', end='')
print('*', end='')
print('*', end='')

# output:
# ***

Example 2: how to print for loop in same line in python

# A small example using range function
for i in range(1, 11):
  print(i, end="")

Example 3: python print without new lines

print('Foo', end='')

Example 4: print for loop in same line python

# to print sum of 1 to 100 numbers in a line (1 + 2 + 3 + 4 +-----+ 100 = 5050)
for count in range(1, 101):
    total = total + count
    if count != 100:
        print("{0} + ".format(count), end ="")
    else:
        print("100 = {0}".format(total))

Example 5: python 2 print in same line

from __future__ import print_function

print("\r Running... xxx", end="")  # works across both major versions

Example 6: python print same line

# Python 2 only
print "Seven"
# Backwards compatible (also fastest)
import sys
sys.stdout.write("Nice film")
# Python 3 only
print("Mob Psycho 100", end="")