We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc82241 commit d30efd3Copy full SHA for d30efd3
Tutorials/1-2VariableSplitting.md
@@ -0,0 +1,47 @@
1
+# VariableSplitting
2
+
3
+Write a string (This can be any combination of letters).
4
5
+```python
6
+var
7
+```
8
9
+Then add a space and an equal sign.
10
11
12
+var =
13
14
15
+If you want an integer, add a space and put a number.
16
17
18
+var = 123456789
19
20
+If you want the integer go up by a number, add a plus before the equals.
21
22
+Hello += 1
23
24
+If you want a string, put the string in between a pair of quotation marks.
25
26
27
+Hello = "Variable"
28
29
30
+Next, put brackets
31
32
33
+Hello[]
34
35
36
+Put a number inside the brackets
37
38
39
+Hello[2]
40
41
42
+## Examples
43
44
+### Example 1:
45
46
47
0 commit comments