Ad
Code
Diff
  • def main():
        return 'hello world'
    
    print(main())
    • hello = 'hello'
    • world = 'world'
    • if hello!=world:
    • print('{hello} {world}'.format(hello=hello,world=world))
    • def main():
    • return 'hello world'
    • print(main())