Βασικές συναρτήσεις

You got 0 of 3 possible points.
Your score: 0%
Question 1

Για την Python 2.7, αντιστοιχείστε τα στοιχεία της στήλης Α με αυτά της στήλης Β

Score: 0.42857142857143 of 1
Your answerChoiceScoreCorrect answer
55str(5)+'5'0'55'
50int(5.0*11)055
55abs(5-55)050
'123'str(1)+str(2)+str(3)1'123'
int(1.0)+int(2.0)+int(3.0)06
6.0float(6)16.0
8pow(2,3)18
Question 2

Για την Python 2.7, αντιστοιχείστε τα στοιχεία της στήλης Α με αυτά της στήλης Β

Score: 0.42857142857143 of 1
Your answerChoiceScoreCorrect answer
5.0float(5)15.0
6int(5.99)05
5str(5)0'5'
6abs(-6)16
8pow(2,3)18
6divmod(60,10)0(6 ,0)
(6 ,0)divmod(6,10)0(0,6)
Question 3

Για την Python 2.7, αντιστοιχείστε τα στοιχεία της στήλης Α με αυτά της στήλης Β

Score: 0.42857142857143 of 1
Your answerChoiceScoreCorrect answer
4.0abs(-5-6)011
2pow(2,1)12
(2,0)divmod(2,1)1(2,0)
2float(3/2)01.0
(2,0)3/float(2)01.5
4.0int(float(9)/2)04
2int(5/float(2)) + float(int(5/2.0))04.0