Skip to content

Instantly share code, notes, and snippets.

@shabbirbhimani
Last active March 25, 2018 16:32
Show Gist options
  • Save shabbirbhimani/5884910d5d9da10739bc9ac11e1616e5 to your computer and use it in GitHub Desktop.
Save shabbirbhimani/5884910d5d9da10739bc9ac11e1616e5 to your computer and use it in GitHub Desktop.
print function
# Let's start with a ritual of programming by printing "Hello World!"
print("Hello World")
# you can also print the values if you want by using print function
# print has the following syntax
# print("statement or information", variableName)
print("company Name is", companyName)
print("Initial Budget is", initalBudget)
print("Per day Wage is", perDayWage)
# Let's print the value of feedback
print("Friend's feedback is : ", feedbackFriend)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment