Skip to content

Commit ed883bb

Browse files
add code
1 parent 45b3cd2 commit ed883bb

File tree

801 files changed

+2308
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

801 files changed

+2308
-0
lines changed

code/sample_1.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
print(10)

code/sample_10.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
x = [1, 2, 3, 4, 5]
2+
for i in range(len(x)):
3+
print(x[i])

code/sample_100.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
x = 4
2+
y = 2
3+
print(x**y)

code/sample_101.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
print(9**0.5)

code/sample_102.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
print(9**.5)

code/sample_103.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
print(9**(1/2))

code/sample_104.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
x = 8**(1/3)
2+
print(x)

code/sample_105.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
x = 8
2+
y = 1/3
3+
print(x**y)

code/sample_106.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
import math
2+
print(math.sqrt(4))

code/sample_107.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
import math
2+
print(math.sqrt(9))

0 commit comments

Comments
 (0)