Skip to content
Snippets Groups Projects
module2_examples.py 110 B
Newer Older
  • Learn to ignore specific revisions
  • vand's avatar
    vand committed
    #%% module 2, example 0
    
    import math
    
    
    a = 50
    b = math.sqrt(a)
    print(b)
    
    #%% composition
    
    print(math.sqrt(50))