summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2025-02-19 17:36:50 -0700
committermo khan <mo@mokhan.ca>2025-02-19 17:36:50 -0700
commit487691450944a9ba8956ccd4e521b8c2633105d6 (patch)
treedc629d13a6de662b3812c2c7c7017c7f1b117fd4
parenteb0e3d21f916321e6cfff5f925c718ef8eb4e992 (diff)
Stringing me along, I see you are
-rw-r--r--strings/main.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/strings/main.py b/strings/main.py
index 14b708a..ae9f7bc 100644
--- a/strings/main.py
+++ b/strings/main.py
@@ -1,3 +1,5 @@
+# https://www.learnpython.org/en/Variables_and_Types
+
mystring = 'hello'
print(mystring)
@@ -5,3 +7,13 @@ mystring = "jello"
print(mystring)
print("Don't worry about 🍺")
+
+one = 1
+two = 2
+three = one + two
+print(three)
+
+hello = "hello"
+world = "world"
+helloworld = hello + " " + world
+print(helloworld)