From 9b50ae29db5b597c518fffed542dcc809e9f46c4 Mon Sep 17 00:00:00 2001 From: t-kalinowski Date: Tue, 15 Aug 2023 19:59:23 +0000 Subject: [PATCH] =?UTF-8?q?Deploying=20to=20gh-pages=20from=20@=20rstudio/?= =?UTF-8?q?reticulate@99cec8fb880264dbf87bf62330a1dfa5078ab9e0=20?= =?UTF-8?q?=F0=9F=9A=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dev/articles/python_primer.html | 20 ++++++++++---------- dev/pkgdown.yml | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/dev/articles/python_primer.html b/dev/articles/python_primer.html index cfe60bfb..a7748b4d 100644 --- a/dev/articles/python_primer.html +++ b/dev/articles/python_primer.html @@ -408,7 +408,7 @@

Iteration with for
l = [1, 2, 3]
 it = iter(l) # create an iterator object
 it
-#> <list_iterator object at 0x7f1cc3b263d0>
+#> <list_iterator object at 0x7f9b588e8220>
 
 # call `next` on the iterator until it is exhausted:
 next(it)
@@ -579,7 +579,7 @@ 

Defining Classes with class instance = MyClass() instance -#> <__main__.MyClass object at 0x7f1cc3b9adc0> +#> <__main__.MyClass object at 0x7f9b588e2580> type(instance) #> <class '__main__.MyClass'>

Like the def statement, the class statement @@ -632,14 +632,14 @@

What are all the underscores?#> MyClass is finished being created instance = MyClass() -#> <__main__.MyClass object at 0x7f1cc3ba07f0> is initializing +#> <__main__.MyClass object at 0x7f9b588de670> is initializing print(instance) -#> <__main__.MyClass object at 0x7f1cc3ba07f0> +#> <__main__.MyClass object at 0x7f9b588de670> instance2 = MyClass() -#> <__main__.MyClass object at 0x7f1cc3ba09a0> is initializing +#> <__main__.MyClass object at 0x7f9b588ee3a0> is initializing print(instance2) -#> <__main__.MyClass object at 0x7f1cc3ba09a0> +#> <__main__.MyClass object at 0x7f9b588ee3a0>

A few things to note: