aboutsummaryrefslogtreecommitdiff
path: root/Python/Beginner training/Basic synthax.py
diff options
context:
space:
mode:
authorSyndamia <kami02882@gmail.com>2019-06-30 15:05:38 +0300
committerSyndamia <kami02882@gmail.com>2019-06-30 15:05:38 +0300
commita0addea2b7bbdac244420ec917c0f3c14c4c8831 (patch)
treea05310b0033f995dfd31b5795e7675aa382a18f3 /Python/Beginner training/Basic synthax.py
parent0c7164435abda2e497957e195e6653f94f20135d (diff)
downloadSelf-learning-a0addea2b7bbdac244420ec917c0f3c14c4c8831.tar
Self-learning-a0addea2b7bbdac244420ec917c0f3c14c4c8831.tar.gz
Self-learning-a0addea2b7bbdac244420ec917c0f3c14c4c8831.zip
Added some of the stuff I have done while learning Python
Diffstat (limited to 'Python/Beginner training/Basic synthax.py')
-rw-r--r--Python/Beginner training/Basic synthax.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/Python/Beginner training/Basic synthax.py b/Python/Beginner training/Basic synthax.py
new file mode 100644
index 0000000..2d87410
--- /dev/null
+++ b/Python/Beginner training/Basic synthax.py
@@ -0,0 +1,5 @@
+import sys
+import random
+import os
+
+for x in range(0, 6, 2): print(x) \ No newline at end of file