Monthly Archives: January 2016

Learning Python from the Codeschool

There is a funny women on the Web that give lessons of Python and I really enjoy to see her videos and challenges. It is not the traditional professor with a blackboard in behind. Here are some challenges that I … Continue reading

Posted in τεχνολογια :: Technology | Leave a comment

Study Drills resolutions from “Learn Python the hard way”

I have been practicing more details relating to Python and this time I want to summarize all the drills or little challenges that the Website provides: Exercise 1: A Good First Program Make your script print another line. print “Hello … Continue reading

Posted in τεχνολογια :: Technology | 1 Comment

Resolution of the Challenges/Kata CODEWARS – Python

During my training of Python I also used Codewars Web and these are the blocks I solved:  def multiply(a,b): return a * b Correct this code, so that the greet function returns the expected value: class Person: def __init__(self, name): self.name = … Continue reading

Posted in τεχνολογια :: Technology | Leave a comment

Resolution of Hackerrank – Python exercises

This time I have completed the Easy difficulty exercises from Hackerranck Website: Mod Divmod from __future__ import division a = int(raw_input()) b = int(raw_input()) print a//b print a%b print divmod(a,b) Print Function Read an integer N. Without using any string methods, … Continue reading

Posted in τεχνολογια :: Technology | Leave a comment