Code from first seminar.

There is not that much of code, but anyway.
practice4
Aleksey Zubakov 2 years ago
parent 8ccc8f718d
commit 99a69b1a98
  1. 27
      01/01.py
  2. 10
      01/README.md
  3. 47
      01/list.py

@ -0,0 +1,27 @@
import antigravity # попробуй
import this
# stdout:
#
# The Zen of Python, by Tim Peters
#
# Beautiful is better than ugly.
# Explicit is better than implicit.
# Simple is better than complex.
# Complex is better than complicated.
# Flat is better than nested.
# Sparse is better than dense.
# Readability counts.
# Special cases aren't special enough to break the rules.
# Although practicality beats purity.
# Errors should never pass silently.
# Unless explicitly silenced.
# In the face of ambiguity, refuse the temptation to guess.
# There should be one-- and preferably only one --obvious way to do it.
# Although that way may not be obvious at first unless you're Dutch.
# Now is better than never.
# Although never is often better than *right* now.
# If the implementation is hard to explain, it's a bad idea.
# If the implementation is easy to explain, it may be a good idea.
# Namespaces are one honking great idea -- let's do more of those!

@ -0,0 +1,10 @@
### Как запускать?
Запустить интерпретатор Python с указанием пути до скрипта.
Достаточно указать имя файла, находясь в директории
```sh
```

@ -0,0 +1,47 @@
a = ["one", "two", "three"]
a[2] + " people"
"three people"
a + [2, 3]
["one", "two", "three", 2, 3]
a.append(True)
print(a)
["one", "two", "three", True]
a.extend([4])
a
["one", "two", "three", True, 4]
a.insert(0, "zero") # Почему плохо?
a
["zero", "one", "two", "three", True, 4]
a = ["one", "two", "three", "for"]
a[1:3:2]
["two"]
a[::2]
["one", "three"]
a[0:2] = []
a
["three", "for"]
a = ["one", "two", "three", "for"]
a.remove(152)
# ValueError Traceback (most recent call last) ----> 1 a.remove(152)
# ValueError: list.remove(x): x not in list
a.index("one")
0
"two" in a
True
len(a)
4
Loading…
Cancel
Save