Python 2 examples taken while learning SPSE
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/usr/bin/python |
|
# -*- coding: utf-8 -*- |
|
|
|
# modules are just files, import testmod --> testmod.py |
|
# note that it cannot start with a number... |
|
# that's it |
|
|
|
# example with previous class: import filewithclass // var1 = filewithclass.Calculator(10,20) // print
|
|
|