Say "Hello, World!" With Python

  • + 0 comments

    def greet(): def hello(): print("hello world") hello() greet()

    def funarg(p1,p2): print("possitive argument 1:",p1) print("possitive argument 2:",p2) funarg("samarth","taarun")

    x=200 def glbvar(): global x x=300 return x print(x) glbvar() print(x)