From c46cf1a2fb07916c5c0efc30cfbb56c0c876b6fb Mon Sep 17 00:00:00 2001 From: Ivan Tavarez <40846384+itava0@users.noreply.github.com> Date: Sat, 16 Jul 2022 10:42:25 -0400 Subject: [PATCH 1/2] My fisrt python program. --- src/00_hello.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/00_hello.py b/src/00_hello.py index 268998dfc7..0452931b79 100644 --- a/src/00_hello.py +++ b/src/00_hello.py @@ -1 +1,2 @@ -# Print "Hello, world!" to your terminal \ No newline at end of file +# Print "Hello, world!" to your terminal +print('Hello, world!') \ No newline at end of file From 53ac2edad288dbd6d74269928648077991001f6b Mon Sep 17 00:00:00 2001 From: Ivan Tavarez <40846384+itava0@users.noreply.github.com> Date: Sat, 16 Jul 2022 10:50:43 -0400 Subject: [PATCH 2/2] Print out 2 to the power of 65536 --- src/01_bignum.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/01_bignum.py b/src/01_bignum.py index c020928d63..ae5aba7aac 100644 --- a/src/01_bignum.py +++ b/src/01_bignum.py @@ -1,4 +1,5 @@ # Print out 2 to the 65536 power # (try doing the same thing in the JS console and see what it outputs) -# YOUR CODE HERE \ No newline at end of file +# YOUR CODE HERE +print(2**65536); \ No newline at end of file