Posts

Showing posts from September, 2019
Input space seperated integers     Get a list of space seperated  integers.And also print the list given. Code: a=list(map(int,input().split())) print(a)
HELLO WORLD!   Print "Hello World!" (using python) Code: print("Hello World!")