#Python

Опубликовано: 12 Октябрь 2024
на канале: Coder Decoder
1,897
50

Python Output Using print() function
We use the print() function to output data to the standard output device (screen). We can also output data to a file, but this will be discussed later.

example

x= input(Enter Welcome Message:")
print("Hello", x)