summaryrefslogtreecommitdiffstats
path: root/docs/lang/python/complex_numbers.txt
diff options
context:
space:
mode:
authordusoleil <howcansocksbereal@gmail.com>2021-08-01 23:28:17 -0400
committerdusoleil <howcansocksbereal@gmail.com>2021-08-03 19:45:48 -0400
commit4338f0862dae3b33862bb32c5dd9fc2eb5f6f90a (patch)
tree1dbb30a584c9d89221e722a12c10f8475dde8fa0 /docs/lang/python/complex_numbers.txt
parent28179e084e0c45137d62b4fe7b8dc9826bfd2fab (diff)
downloadlib-des-gnux-4338f0862dae3b33862bb32c5dd9fc2eb5f6f90a.tar.gz
lib-des-gnux-4338f0862dae3b33862bb32c5dd9fc2eb5f6f90a.zip
Adding Various Docs
Adding a short list of pwn links, a note about python support for complex numbers, and a short SSTI guide. Signed-off-by: dusoleil <howcansocksbereal@gmail.com>
Diffstat (limited to '')
-rw-r--r--docs/lang/python/complex_numbers.txt2
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/lang/python/complex_numbers.txt b/docs/lang/python/complex_numbers.txt
new file mode 100644
index 0000000..754c35e
--- /dev/null
+++ b/docs/lang/python/complex_numbers.txt
@@ -0,0 +1,2 @@
+You can represent complex numbers in python with a 'j' instead of an 'i'.
+These can then be used in arithmetic expressions like normal.