Monday, August 7, 2023

MULTI STRING PROGRAMMING CODE

MULTI STRING 

INPUT:

 X="Priya"

Y=75

Z=7.8

print(X)

print(type(X))

print(Y)

print(type(Y))

print(Z)

print(type(Z))

print(Y+Z)

print(X,Y,Z)

def myfun():

    X="Apple"

    print("I Like"+X)


OUTPUT:

Priya

<class 'str'>

75

<class 'int'>

7.8

<class 'float'>

82.8

Priya 75 7.8









USD TO INR C++ PROGRAMMING

  NALLAMUTHU GOUNDER MAHALINGAM COLLEGE                                                 POLLACHI-642001                                     ...