diff options
| author | mo khan <mo@mokhan.ca> | 2025-02-19 17:36:50 -0700 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2025-02-19 17:36:50 -0700 |
| commit | 487691450944a9ba8956ccd4e521b8c2633105d6 (patch) | |
| tree | dc629d13a6de662b3812c2c7c7017c7f1b117fd4 | |
| parent | eb0e3d21f916321e6cfff5f925c718ef8eb4e992 (diff) | |
Stringing me along, I see you are
| -rw-r--r-- | strings/main.py | 12 |
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) |
