Twise Random

A site about computer science .
Skip to content
  • apple
  • android
  • c
  • cpp
  • data structure and algorithms
  • macos
  • python
  • tutorials

Tag: python

Solving english ruler problem using recursion in python and swift

Posted on August 12, 2019September 26, 2020 by mohamad wael

We must print an english ruler using recursion . An english ruler is ruler where each unit has a number of tick. a unit can be divided into smaller units at 1/2 the interval 1/4 the interval 1/8 the interval … Read More

data structure and algorithms english ruler, php, python, recursion, swift

Python iterable and iterator a tutorial

Posted on July 17, 2019October 29, 2020 by mohamad wael

what is an iterable ?

In python , objects are abstraction of data , they have methods that work with data , and help us to manipulate it . If we take a look at a list , and see … Read More

python iterable, iterator, next, python

How To Use The TimeIt Module in python

Posted on July 7, 2019September 26, 2020 by mohamad wael

The timeIt module is used to test how fast our code is . We can use it to compare different functions or classes or just some line of code ,and see how fast they are .Also if we want we … Read More

modules python, speed, testing, timeit, timeit.repeat, timeit.timeit