This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Ispišite svoje ime i prezime unatrag | |
### Ispišite trece slovo svog imena velikim slovom | |
print "Damir Svrtan".reverse | |
print "Damir"[2].capitalize |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Brojčano na ekranu ispišite koliko godina ima sekundi. | |
### Koliko imate godina ako ste stari 8286 dana? | |
print 365*24*60*60 | |
print 8286/365 |
NewerOlder