Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #99711

Re: variable vs. object

Path csiph.com!fu-berlin.de!uni-berlin.de!not-for-mail
From Joel Goldstick <joel.goldstick@gmail.com>
Newsgroups comp.lang.python
Subject Re: variable vs. object
Date Sun, 29 Nov 2015 21:16:04 -0500
Lines 34
Message-ID <mailman.13.1448850192.14615.python-list@python.org> (permalink)
References <2b4696d5-c9fb-4ca6-92a3-564e47712d59@googlegroups.com>
Mime-Version 1.0
Content-Type text/plain; charset=UTF-8
X-Trace news.uni-berlin.de o0ZUNdu/PNEudx3bZ7ovigJVU2i8XngN0clZwnsPOjaQ==
Return-Path <joel.goldstick@gmail.com>
X-Original-To python-list@python.org
Delivered-To python-list@mail.python.org
X-Spam-Status OK 0.007
X-Spam-Evidence '*H*': 0.99; '*S*': 0.00; "'a'": 0.07; 'cc:addr :python-list': 0.09; 'python': 0.10; 'languages.': 0.15; 'variables': 0.15; 'integer.': 0.16; 'objects?': 0.16; 'received:io': 0.16; 'received:psf.io': 0.16; 'subject:object': 0.16; 'subject:variable': 0.16; 'too?': 0.16; 'variables:': 0.16; 'wrote:': 0.16; 'email addr:gmail.com&gt;': 0.18; 'variable': 0.18; '2015': 0.20; 'cc:2**0': 0.20; 'cc:addr:python.org': 0.20; 'object.': 0.22; 'thanks,': 0.24; 'header:In-Reply-To:1': 0.24; 'question': 0.27; 'message-id:@mail.gmail.com': 0.27; 'url:mailman': 0.30; 'at:': 0.31; 'says': 0.32; 'url:python': 0.33; 'url:listinfo': 0.34; 'received:google.com': 0.35; 'nov': 0.35; 'url:org': 0.36; 'received:209.85': 0.36; 'pm,': 0.36; 'subject:: ': 0.37; 'received:209.85.213': 0.37; 'difference': 0.38; 'received:209': 0.38; 'several': 0.38; 'hi,': 0.38; 'url:mail': 0.40; 'yes': 0.62; 'subject:. ': 0.67; 'url:htm': 0.75; 'to:none': 0.91; 'joel': 0.91
DKIM-Signature v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:cc :content-type; bh=b70AJQDrDNlIU8FCl0+hj1TK/BanlIBF0OCBjz0Jwl8=; b=cnTDd+laH/lY6nAhabhvzbYKurnt4KIfNisYHrBtw1VJ/tabaa8KxVjJVArBumGnrJ BmHpCbgWav1pcZgKyU3L4chF0K9TH5z+ryv2/TWtq2h8nywNNZcScrQsjRvgA2/9RH6H MdMHG0FeY2THdmFNvbN0XBWsOWucvMytIi8dFIB6iCHdYsUe+9KP7FWVkGc5VsJM2y7/ tvekeAdpWVCuVlurF7lVIIKyxsnKD5GUl+l/mV9crWD+ArZMQembRVHGF4rVJBA8ynqM CVKGAWRpY2BHN0UFfpgwADnV9o15/4pS3zwVWinsulqhs0T9ZPc9Yt2jFCyUfrRAfYxU ZeRQ==
X-Received by 10.50.20.138 with SMTP id n10mr19147909ige.11.1448849764083; Sun, 29 Nov 2015 18:16:04 -0800 (PST)
In-Reply-To <2b4696d5-c9fb-4ca6-92a3-564e47712d59@googlegroups.com>
X-Content-Filtered-By Mailman/MimeDel 2.1.20+
X-BeenThere python-list@python.org
X-Mailman-Version 2.1.20+
Precedence list
List-Id General discussion list for the Python programming language <python-list.python.org>
List-Unsubscribe <https://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe>
List-Archive <http://mail.python.org/pipermail/python-list/>
List-Post <mailto:python-list@python.org>
List-Help <mailto:python-list-request@python.org?subject=help>
List-Subscribe <https://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe>
Xref csiph.com comp.lang.python:99711

Show key headers only | View raw


On Sun, Nov 29, 2015 at 9:06 PM, fl <rxjwg98@gmail.com> wrote:

> Hi,
>
> I read several parts on line about Python that everything in Python is an
> object. Yes, it is a key difference with other languages. Then, I read a
> page
> it says variables: global and local variable at:
>
> http://www.tutorialspoint.com/python/python_functions.htm
>
>
> I have a question that whether variables are objects?
>
> For example,
>
> a=10
>
> 'a' is an integer. Is it an object too?
>

yes

>
> Thanks,
> --
> https://mail.python.org/mailman/listinfo/python-list
>



-- 
Joel Goldstick
http://joelgoldstick.com/stats/birthdays

Back to comp.lang.python | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

variable vs. object fl <rxjwg98@gmail.com> - 2015-11-29 18:06 -0800
  Re: variable vs. object Joel Goldstick <joel.goldstick@gmail.com> - 2015-11-29 21:16 -0500
  Re: variable vs. object André Roberge <andre.roberge@gmail.com> - 2015-11-29 18:24 -0800
    Re: variable vs. object Ben Finney <ben+python@benfinney.id.au> - 2015-11-30 13:45 +1100
  Re: variable vs. object Ben Finney <ben+python@benfinney.id.au> - 2015-11-30 13:41 +1100
  Re: variable vs. object Marko Rauhamaa <marko@pacujo.net> - 2015-11-30 07:28 +0200
  Re: variable vs. object Nagy László Zsolt <gandalf@shopzeus.com> - 2015-11-30 09:09 +0100
  Re: variable vs. object Chris Angelico <rosuav@gmail.com> - 2015-11-30 19:19 +1100

csiph-web