Introduction to Formatting Numbers
Let us say that your program is calculating a number in decimal and you needed to print out leading zeros to it, how would you do it? If there is no need for formatting, you can just use the print command.
my $a = 10.003403;
print "$a";