Home | Computer Science

<
Python

Program

Write a program using String


Program
INPUT

print("MAYANK BANSAL") print('mayank bansal')

OUTPUT

<
Program

Program

Write a program using String


Program
INPUT

c="MAYANK BANSAL" print(c)

OUTPUT

<
Python

Program

Write a program using Multiline Strings


Program
INPUT

c='''MAYANK BANSAL MAYANK BANSAL''' print(c)

OUTPUT

<
Program

Program

Write a program using Multiline Strings


Program
INPUT

c="""MAYANK BANSAL MAYANK BANSAL""" print(c)

OUTPUT