How many characters will be printed from the following code? #!/usr/bin/python3str = "Testing Python.."print(str[8:]) How many words will be printed from the following code? #!/usr/bin/python3print( len(sys.argv) )Solution: Nothing How many words will be printed from the following code? #!/usr/bin/python3import sysprint("Hello " + sys.argv[-1])