Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupport News AboutSign UpSign In
| Download
Views: 475
1
2
# -*- coding: utf-8 -*-
3
"""
4
Primjer modula. Sadrži varijablu my_variable,
5
funkciju my_function te klasu MyClass.
6
"""
7
my_variable = 0
8
def my_function():
9
"""
10
Primjer funkcije
11
"""
12
return my_variable
13
class MyClass:
14
"""
15
Primjer klase
16
"""
17
def __init__(self):
18
self.variable = my_variable
19
def set_variable(self, new_value):
20
"""
21
Daje novu vrijednost varijabli self.variable
22
"""
23
self.variable = new_value
24
def get_variable(self):
25
return self.variable
26