We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05040c0 commit 61d6b67Copy full SHA for 61d6b67
.style.yapf
@@ -0,0 +1,4 @@
1
+[style]
2
+COLUMN_LIMIT = 119
3
+INDENT_WIDTH = 4
4
+USE_TABS = False
hello_world.py
@@ -1,8 +1,15 @@
+def vector(dim):
+ import numpy as np
+
5
+ return np.random.rand(dim)
6
7
def message():
8
return 'Hello, Danger world!'
9
10
def main():
11
print(message())
12
+ print(vector(10))
13
14
if __name__ == '__main__':
15
main()
requirements.txt
@@ -0,0 +1,2 @@
+yapf
+futures
0 commit comments