Open
Changes from all commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Failed to load files.
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
# Author: OMKAR PATHAK
# This program prints the entered message

'''
def justPrint(text):
'''This function prints the text passed as argument to this function'''
print(text)

if __name__ == '__main__':
justPrint('Hello')
'''


#method to print the entered message.(without using function)
text = input("Enter the message that you want to display: ")
print(text)