���� ������
���� ������ ������ ��� ���� ������� ����� ����� �� ������ ��
�����. ����� ���� ������ ����� �� ���� �����, ������� ����� ���.
��� ������ �� ���� ���� ������, �� ����� �� ������
python. ������ "������" �� ����� �� ����
> ������ > ����� > ����� (���� �����). ��� ���� �����
������ �� ������ �� ����� ���-���� (Control-D ������� ������, Control-Z ������� ��� �������). �� ����� ����� Enter ���� ����� ��� ����.
�� ����
������ ���� ����� ������ ������:
���
������� � ����� ��� ���� ����� ���� ����� ������ ��
�����, �� ���� ������ ������ ������ ������ �� �����.
C:\Python21>python Python
2.1.1 (#20, Jul 20 2001, 01:19:29) [MSC 32 bit (Intel)] on
win32 Type "copyright", "credits" or "license" for more
information. >>> a = "inquisition" >>> b =
"no one expects the spanish " >>> b+a 'no one expects
the spanish inquisition' >>>
^Z C:\Python21>
������ ���� ������ � ����� ��� ����� ������ ���� �� �����
�����, ���� ��� ����, ����� �� ���� �����.
C:\Python21>python sample.py this file contains the
following commands: x =
9 y = x**2 print 19+y And its
output is: 100 C:\Python21>
������ ������ ������
����� c-
� ����� ��� ����� ������ ���� ��
������ ������� ��,
C:\Python21>python -c "a=3;print
a+5" 8 C:\Python21>
���� ��� ������ ���� �����������, ������� �� ����� ��� (����
���) ����� ����� "���� �-", ��� ����� ����. �� �� ���� �"����� ����"
� ���� ������� �������� �� ��� ���� ����� ���, ������� ������ ���
���� ������, ������ ���:
C:\Python21>python Python 2.1.1
(#20, Jul 20 2001, 01:19:29) [MSC 32 bit (Intel)] on win32 Type
"copyright", "credits" or "license" for more
information. >>> i_was_a_rich_man = 1 >>> if
i_was_a_rich_man: ... print
"yabada"*4 ... yabadayabadayabadayabada >>>
|