diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..d56657a --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml index 9f79b33..411da22 100644 --- a/.idea/modules.xml +++ b/.idea/modules.xml @@ -3,6 +3,7 @@ + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/workspace.xml b/.idea/workspace.xml new file mode 100644 index 0000000..e578f04 --- /dev/null +++ b/.idea/workspace.xml @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1621431823576 + + + + + + + + + \ No newline at end of file diff --git "a/5\354\243\274\354\260\250.py" "b/5\354\243\274\354\260\250.py" new file mode 100644 index 0000000..7c0d22a --- /dev/null +++ "b/5\354\243\274\354\260\250.py" @@ -0,0 +1,14 @@ +import turtle as t + +with open('test.txt', 'r') as f: + lines = f.readlines() + values = list(map(int, lines)) + +t.shape('turtle') +n = len(values) + +for i in range(0, n - 1, 2): + t.forward(values[i]) + t.right(values[i + 1]) + +t.forward(values[-1]) \ No newline at end of file diff --git a/main1.py b/main1.py index f458ef5..efc8b20 100644 --- a/main1.py +++ b/main1.py @@ -1 +1,4 @@ +# git add . +# git commit -m "wow" +# git push origin master print(444) \ No newline at end of file diff --git a/test.txt b/test.txt new file mode 100644 index 0000000..ecd2d45 --- /dev/null +++ b/test.txt @@ -0,0 +1,7 @@ +100 +90 +100 +90 +90 +90 +90 \ No newline at end of file