Advertisement
Felanpro

import syntax

Aug 4th, 2016
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.22 KB | None | 0 0
  1. import os
  2. print(os.getcwd())
  3.  
  4. from os import *
  5. print(getcwd())
  6.  
  7. from random import randint
  8. print(randint(1, 11))
  9.  
  10. import statistics as s
  11. example_list = [1, 2, 5, 6, 4, 8, 10 , 7]
  12. print(s.median(example_list))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement