Home > Articles

This chapter is from the book

Input and Output

We'll finish up today with two topics that initially might not seem to fit with everything else we've talked about concerning scalar data: handling simple input and output. I've included them here essentially for one reason: so you know what's been going on in the scripts you've been writing that read input from the keyboard and print output to the screen.

In this section we'll talk about simple input and output, and as the book progresses you'll learn more about input and output to disk files, culminating on Day 15, "Working with Files and I/O."

File Handles and Standard Input and Output

First, some terminology. In the scripts you've been looking at today and yesterday, you've used Perl code to read input from the keyboard and to write output to the screen. In reality, the keyboard and the screen aren't the best terms to use because, actually, you're reading from a source called standard input, and writing to a destination called standard output. Both of these concepts are borrowed from Unix systems, where using pipes and filters and redirection are common, but if you're used to Windows or the Mac, the idea of a standard input or output might not make much sense.

In all cases, when you're reading data from a source, or writing data to a destination, you'll be working with what are called file handles. Most often, file handles refer to actual files on the disk, but there are instances where data might be coming from or going to an unnamed source, for example, from or to another program such as a Web server. To generalize data sources and destinations that are not actual files, Perl gives you built-in file handles for standard input and standard output called STDIN and STDOUT (there's also STDERR, for standard error, but we'll leave that for later). These two file handles happen to include (and, in fact, are most commonly used for) input from the keyboard and output from the screen.

Reading a Line from Standard Input with <STDIN>

In the scripts we've seen so far in this book, there's usually been a line for reading input from the keyboard that looks something like this:

chomp($inputline = <STDIN>);

You'll see that line a lot in Perl code, although often it occurs on multiple lines, something like this (the two forms are equivalent):

$inputline = <STDIN>;
chomp($inputline);

You know now that $inputline is a scalar variable, and that you're assigning something to it. But what?

The STDIN part of this line is the special built-in file handle for standard input. You don't have to do anything to open or manage this special file handle; it's there for you to use. In case you're wondering why it's in all caps; that's a Perl convention to keep from confusing file handles from other things in Perl (such as actual keywords in the language).

The angle brackets around <STDIN> are used to actually read input from a file handle. The <> characters, in fact, are often called the input operator. <STDIN>, therefore, means read input from the STDIN file handle. In this particular case, where you're assigning the <STDIN> expression to a scalar variable, Perl will read a line from standard input and stop when it gets to a newline character (or a carriage return on the Macintosh). Unlike in C, you don't have to loop through the output and watch every character to make sure it's a newline; Perl will keep track of that for you. All you need is <STDIN> and a scalar variable to store the input line in.

NOTE

The definition of what a line is for <STDIN> is actually determined by Perl's input record separator, which is a newline character by default. On Day 9, "Pattern Matching with Regular Expressions," you'll learn how to change the input record separator. For now, just assume that the end of line character is indeed the end of a line and you'll be fine.

All this talk about input and output brings us to the somewhat amusingly named chomp function. When you read a line of input using <STDIN> and store it in a variable, you get all the input that was typed and the newline character at the end as well. Usually, you don't want that newline character there, unless you're printing the input right back out again and it's useful for formatting. The built-in Perl chomp function, then, takes a string as input, and if the last character is a newline, it removes that newline. Note that chomp modifies the original string in place (unlike string concatenation and other string-related functions, which create entire new strings and leave the old strings alone). That's why you can call chomp by itself on its own line without reassigning the variable that holds that string.

NOTE

Previous versions of Perl used a similar function for the same purpose called chop. If you read older Perl code, you'll see chop used a lot. The difference between chomp and chop is that chop indiscriminately removes the last character in the string, whether it's a newline or not, whereas chomp is safer and doesn't remove anything unless there's a newline there. Most of the time, you'll want to use chomp to remove a newline from input, rather than chop.

Writing to Standard Output with print

When you get input into your Perl script with <STDIN>, or from a file, or from wherever, you can use Perl statements to do just about anything you like with that input. The time comes, then, when you'll want to output some kind of data as well. You've already seen the two most common ways to do that: print and printf.

Let's start with print. The print function can take any number of arguments and prints them to the standard output (usually the screen). Up to this point we've only used one argument, but you can also give it multiple arguments, separated by commas. Multiple arguments to print, by default, will get concatenated together before they get printed:

print 'take THAT!';
print 1, 2, 3;  # prints '123'
$a = 4;
print 1, ' ', $a; # prints "1 4"
print 1, " $a";  # same thing

NOTE

I say by default because multiple arguments to print actually form a list, and there is a way to get Perl to print characters in between list elements. You'll learn more about this tomorrow on Day 4, "Working with Lists and Arrays."

I mentioned the STDOUT file handle earlier, as the way to access the standard output. You might have noticed, however, that we've been printing data to the screen all along with print, and we've never had to refer to STDOUT. That's because Perl, to save you time and keystrokes, assumes that if you use print without an explicit file handle, you want to use standard output. In reality, the following Perl statements do exactly the same thing:

print "Hello World!\n" ;
print STDOUT "Hello World!\n";

More about the longer version of print when you learn more about file handles that are attached to actual files, on Day 15.

printf and sprintf

In addition to the plain old workhorse print, Perl also provides the printf and sprintf functions, which are most useful in Perl for formatting and printing numbers in specific ways. They work almost identically to those same functions in C, but beware: printf is much less efficient than print, so don't just assume you can use printf everywhere because you're used to it. Only use printf when you have a specific reason to do so.

As you learned yesterday, you use the printf function to print formatted numbers and strings to an output stream, such as standard output. sprintf formats a string and then just returns that new string, so it's more useful for nesting inside other expressions (in fact, printf calls sprintf to do the actual formatting).

Both printf and sprintf take two or more arguments: the first, a string containing formatting codes, and then one or more values to plug into those codes. For example, we've seen examples of printf that rounded off a floating-point number to two decimal places, like this:

printf("Average (mean): %.2f", $avg);

We've seen one that truncates it to an integer, like this:

printf("%d degrees Celsius\n", $cel);

Yesterday, you also saw how to use sprintf to round a floating-point number to two digits of precision:

$value = sprintf("%.2f", $value);

The format codes follow the same rules as the C versions (although the * length specifier isn't supported), and can get quite complex. A simple formatting code that you might use in Perl looks like this:

%l.px

The x part is a code referring to the type of value; in Perl you'll be most interested in the d formatting code for printing integers, and the f formatting code for printing floating-point numbers. The l and the p in the formatting code are both optional. l refers to the number of characters the value should take up in the final string (padded by spaces if the value as printed is less than l), and p is the number of digit precision of a floating-point number. All numbers are rounded to the appropriate precision.

If you need to print an actual percent sign in your output, you'll need to use two of them:

printf("%d%% humidity \n", $hum);

Here are some typical examples of how either sprintf or printf might be used:

$val = 5.4349434;
printf("->%5d\n", $val);   # 5
printf("->%11.5f\n", $val); # 5.43494
printf("%d\n", $val);    # 5
printf("%.3f\n", $val);   # 5.435
printf("%.1f\n", $val);   # 5.4

Multiple formatting codes are interpolated left to right in the string, each formatting code replaced by an argument (there should be an equal number of formatting codes and extra arguments):

printf("Start value : %.2f End Value: %.2f\n", $start, $end);

In this example, if $start is 1.343 and $end is 5.33333, the statement will print this:

Start value : 1.34 End Value: 5.33

If you're unfamiliar with C's printf formatting codes, you might want to refer to the perlfunc man page (or the printf man page) for more details.

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020