KnowledgeBoat Logo
|

Computer Science

Try the following code on Python Shell and evaluate the output generated:

>>> print("Python is easy to learn and write.")
>>> print(3.14159*7)
>>> print('I am a class XI' + 'student')
>>> print('I', 'm')
>>> print("class XI student")
>>> print("I'm", 16, "years old")

Getting Started

3 Likes

Answer

Python is easy to learn and write.
21.99113
I am a class XIstudent
I m
class XI student
I'm 16 years old

Answered By

1 Like


Related Questions