Computer Science, asked by yashsoni080890, 5 months ago

To print the value of a variable in Python, python uses :​

Answers

Answered by Mehlanitin
1

Answer:

In Python, single, double and triple quotes are used to denote a string.

Explanation:

This is the answer of your problem

Answered by figrayx
0

Answer:

print(variablename)

Explanation:

example:

number = 2

print(number)

output:

2

"number" is a variable with value 2 as an integer

print(number) function will print the value of "number".

Similar questions