Skip to content
Snippets Groups Projects
Commit afab7116 authored by vand's avatar vand
Browse files

Upload New File

parent 281a17ed
Branches
No related tags found
No related merge requests found
#%% module 1, example 0
myname = 'vedrana'
first_number = 5.6
second_number = 8
a = first_number + second_number
b = first_number > second_number
print(myname)
print(a)
print(b)
#%% module 1, example 1
import math
a = 50
b = math.sqrt(a)
print(b)
#%% module 1, execution in order
# This will not work, since code is executed line by line
that = 15 + this
this = 27
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment