Q1.How to import only 'sqrt' from 'math'?
Q2.Result of math.ceil(4.1)?
Q3.Result of math.floor(4.9)?
Q4.What is random.random() return range?
Q5.How to get a random integer from 1 to 10?
Q6.How to pick a random item from a list?
Q7.Function for shuffling a list in-place?
Q8.What is math.pow(2, 3)?
Q10.What is the sys.argv list?
Q11.How to exit a script programmatically?
Q12.What is the purpose of __name__ == '__main__'?
Q13.What is statistics.mean([1, 2, 3])?
Q14.What is statistics.median([1, 2, 100])?
Q15.What is statistics.mode([1, 2, 2, 3])?
Q16.Does math.sqrt(-1) work?
Q17.What is random.seed(x)?
Q18.What is the platform module used for?
Q19.What is time.sleep(5)?
Q20.What is datetime.now()?
Q21.Difference between random() and uniform(a,b)?
Q22.How to get math constants e?
Q23.What is math.factorial(5)?
Q24.What is the help() function?
Q25.What is the dir() function?
Q26.How to reload a module?
Q27.What is the 'os' module for?
Q28.What is os.path.exists(p)?
Q29.What is json.loads(s)?
Q30.What is json.dumps(obj)?