# to print sum of 1 to 100 numbers in a line (1 + 2 + 3 + 4 +-----+ 100 = 5050)for count inrange(1,101):
total = total + count
if count !=100:print("{0} + ".format(count), end ="")else:print("100 = {0}".format(total))
# Python 3 code for printing# on the same line print("geeks", end =" ")print("geeksforgeeks")
a=[1,2,3,4,5,6]# using * symbol prints the list# elements in a single lineprint(*a)
# to print sum of 1 to 100 numbers in a line (1 + 2 + 3 + 4 +-----+ 100 = 5050)for count inrange(1,101):
total = total + count
if count !=100:print("{0} + ".format(count), end ="")else:print("100 = {0}".format(total))
# Python 3 code for printing# on the same line print("geeks", end =" ")print("geeksforgeeks")
a=[1,2,3,4,5,6]# using * symbol prints the list# elements in a single lineprint(*a)