Computer Science, asked by bansumar, 1 month ago

write a python programing to print "welcome to python programing​

Answers

Answered by BrainlyTwinklingstar
7

Printing text - Python

Before we print, let's first know about something in Python. In Python, we use print function (a parameterized sequence of statement) to output the text.

So to generate the text we use the print function.

\rule{300}{1}

The Program

print('Welcome to python programming')

\rule{300}{1}

The output of the given program will be as follows:

Welcome to python programming.

Answered by AaryaBalan
1

Answer:

variable = "welcome to python programing​"

print(variable)

Similar questions