We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 284c7ba commit dd755abCopy full SHA for dd755ab
functionExample
@@ -0,0 +1,9 @@
1
+def myFunction(x):
2
+ # This function accepts a parameter x, which is an
3
+ # integer. Then it computes the value f(x) and prints
4
+ # it.
5
+ y = 9*x + 1
6
+ print(str(y))
7
+
8
+for i in range(5):
9
+ myFunction(i)
0 commit comments