Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # Tutaj pisz swój kod, młody padawanie ;-)
- a = 3
- b = 4.34
- c = 5
- d = a / c
- print('Wynikiem: ' + repr(a) + ' / ' + repr(c) + ' jest = ' + repr(d) )
- d = 'Adam '
- e = 'Jurkiewicz '
- print(d+e)
- print('-------')
- print(3*e)
Advertisement
Add Comment
Please, Sign In to add comment