Computer Science, asked by kshamatiwari22222, 4 months ago

Predict the output:


T=(*Python")*3

print(type(T))​

Answers

Answered by allysia
0

Correcting it a bit to:

\\\tt T=("Python")*3 \\\ttprint(type(T))

The output will be:

<class 'str'>

Since the datatype is string.

Similar questions