Computer Science, asked by ramsmedicine, 1 month ago

pls Ans expects and ace
this is python

Attachments:

Answers

Answered by CoderRishav
2

Answer:

Output - ism

NOTE - Python is case sensitive it means Name and NAME are two different words!!

A request to mark me brainlist because I need it to go next level

Regards,

Rishav

Answered by Anonymous
16

Finding output - Python

Before we find the output of the given Program, let's first know about that what is Python.

Python is a powerful high-level, object-oriented programming language created by Guido van Rossum. It has simple easy-to-use syntax, making it the perfect language for someone trying to learn computer programming for the first time.

\rule{300}{1}

The output

The output of the given program will be ism.

Now maybe you are thinking that why the output is ism why not ISM. So lemme explain why the output come ism not ISM.

Here,

>>> Name="ISM"

>>> NAME="ism"

>>> print(NAME)

Here, the Name & NAME are two different words, in the first Name, first letter is capital and all letters are small, and in second NAME, all letters are capital, now after that the NAME word is printing in the given Program, the value of NAME is ism, so the output will be ism.

Similar questions