Login
Help/Guide
About Trac
Preferences
Wiki
Timeline
Context Navigation
←
Previous Change
Wiki History
Next Change
→
Changes between
Version 55
and
Version 56
of
python
View differences
inline
side by side
Show
lines around each change
Show the changes in full context
Ignore:
Blank lines
Case changes
White space changes
Timestamp:
Oct 22, 2013, 11:06:22 AM (
11 years
ago)
Author:
Leon Kos
Comment:
Operator obsega je bil pozabljen
Legend:
Unmodified
Added
Removed
Modified
python
v55
v56
98
98
b.append(4) # dodamo element na koncu
99
99
b[5]=5
100
101
p = [] # prazen seznam
102
b = [1,2,3,4,5]
103
b[-1]=4
104
c = b[1:-1] # Operator obsega : (range) do predzadnjega!
105
d = b[1:] # pa do zadnjega
106
print c, b[-1]
100
107
101
108
# Matrike