mirror of
https://github.com/Asabeneh/30-Days-Of-Python.git
synced 2026-06-06 21:09:15 +08:00
Merge pull request #425 from anupama12sg/master
Added "Hello World" code in Intro
This commit is contained in:
commit
acd6b5fbbc
@ -1,6 +1,11 @@
|
||||
# Introduction
|
||||
# Day 1 - 30DaysOfPython Challenge
|
||||
|
||||
print("Hello World!") # print hello world
|
||||
|
||||
print(2 + 3) # addition(+)
|
||||
print(3 - 1) # subtraction(-)
|
||||
print(2 * 3) # multiplication(*)
|
||||
print(3 + 2) # addition(+)
|
||||
print(3 - 2) # subtraction(-)
|
||||
print(3 * 2) # multiplication(*)
|
||||
|
||||
Loading…
Reference in New Issue
Block a user