Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

hello world

# simple python Hello World program:
print('hello world')

# or, more exclusive:
def say_hello_to_the_world():
	print('hello world')

def main():
	say_hello_to_the_world()

main()
Source by www.geeksforgeeks.org #
 
PREVIOUS NEXT
Tagged: #world
ADD COMMENT
Topic
Name
4+9 =