Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4016978
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T09:48:20+00:00 2026-05-20T09:48:20+00:00

I can do this in Python: >>> type(1) <class ‘int’> What’s the Perl equivalent?

  • 0

I can do this in Python:

>>> type(1)
<class 'int'>

What’s the Perl equivalent?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-20T09:48:20+00:00Added an answer on May 20, 2026 at 9:48 am

    Perl does not make a hard distinction between strings and numbers the way that Python or Ruby do. In Perl, the use of operators determines how the variable will be interpreted.

    In Python, when you write 1 + 2, Python checks the type of each argument, sees that they are numbers, and then performs the addition (3). If you write '1' + '2', it sees that both are strings, and performs concatenation ('12'). And if you write 1 + '2' you get a type error.

    In Perl, when you write 1 + 2, the + operator imposes numeric context on it’s arguments. Each of the arguments is converted to a number (with a subsequent warning if the argument could not be converted cleanly) and then the addition is performed (3). If you write '1' + '2', the arguments are still converted to numbers with a result of 3.

    If you wanted concatenation, you would use the . operator: 1 . 2 which will result in '12' even though both of the arguments were numbers.

    So since Perl’s operators force a type interpretation, the variable itself does not need to (and doesn’t) contain a type. If you really need to determine which is which, you can use Scalar::Util‘s looks_like_number function, but generally coding like that in Perl is indicative of a design problem.

    Perl’s scalar variables can contain one of 4 things:

    • numbers
    • strings
    • the undefined value (undef)
    • references (which can be a reference to any of the primitive types, or to objects)

    The ref keyword is used to determine if a scalar contains a reference, and what type that reference is.

    ref(1)         --> ''  (a false value)
    ref('string')  --> ''  (a false value)
    ref([1, 2, 3]) --> 'ARRAY'
    ref({a => 1})  --> 'HASH'
    ref(\1)        --> 'SCALAR'
    ref(\\1)       --> 'REF'
    ref(sub {})    --> 'CODE'
    

    The full list can be found at perldoc -f ref

    When a reference is blessed into a package, that reference becomes an object. In that case, ref will return the name of the package the object is blessed into.

    {package My::Object;
        sub new {bless {}}
    }
    
    my $obj = My::Object->new;
    
    ref($obj)  -->  'My::Object'
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Can someone explain to me this odd thing: When in python shell I type
How can I resolve this? >>> class unslice: ... def __getitem__(self, item): print type(item),
I can do this in C++ and Python, but I haven't quite figured it
In Python, you can do this: import webbrowser webbrowser.open_new(http://example.com/) It will open the passed
In Python, I can do this: >>> import string >>> string.letters 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ' Is there
Can we initialize Python objects with statement like this: a = b = c
This came up in Hidden features of Python , but I can't see good
I am learning python and have this error . I can figure out where\what
How can I reboot a Windows XP64 Machine in a Python Script? This machine
Not many are aware of this feature, but Python's functions (and methods) can have

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.