answersLogoWhite

0

To print hello

User Avatar

Anonymous

14y ago
Updated: 12/17/2022

Print 'Hello';

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

What is the meaning of print python programming?

In Python; the "print" feature will simply output something (defined by you) onto the screen. For example: print("Hello") would output "Hello" to the screen!


What does the print command do in Python?

The print command is a way to display output to the console. The hello world program, for example, can be written in python as simply print("Hello world") Other values can also be used in a print statement: a = 4 print(a) #will print the number 4


What PHP statement outputs text on the screen?

There are several different ways to output text on the screen in PHP two of the most common are echo and print. echo "Hello World!"; print ("Hello World!"); Would both print ... Hello World!


How are print jobs organised by XP?

Hello there [= (=


What symbol would you use in most versions of BASIC as a shortcut for the PRINT command?

Using a ? instead of typing PRINT saved four keystrokes. 10 ? "Hello" would do the same as 10 PRINT "Hello".


How do you print Hello World on the debugger of CMDR?

What is CMDR.


How do you print hello world in python?

by opening his mouth!


How do you print a particular value using PHP?

To print a particular value in PHP you have to select which variable you wish to print. Below is an example of how this can be done. <?php $var[1] = "Hello"; $var[2] = "Lalala"; print $var[2]; // prints Lalala but not Hello ?>


How do functions help you to reuse code in a program?

Functions hold code, which means anything that happens within a function can be "called" later on. Allowing the programmer to save time, and ensuring he doesn't have to re-write code. Example: Instead of writing "Hello" 10 times, I made a function that said print("hello") 5 times, then "Called" the function twice. def helloFiveTimes(): print("Hello") print("Hello") print("Hello") print("Hello") print("Hello") return helloFiveTimes() helloFiveTimes()


What are the release dates for The Penguins of Madagascar - 2008 Hello Dollface Fit to Print?

The Penguins of Madagascar - 2008 Hello Dollface Fit to Print was released on: USA: October 2010


What must you place in if conditon to execute both if and else?

if ( fork() ) { print "hello"; } else { print "world"; }


How do you print an HTML table using PHP?

It is really simple to print an HTML table in PHP, all you have to do is the following: <?php print "<table>"; print "<tr>"; print "<td>hello</td>"; print "</tr>"; print "</table>"; ?>