-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathday1_100.py
32 lines (28 loc) · 1 KB
/
day1_100.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
print("""
Danny
November 26th, 2022
I am signing up for Replit's 100 days of Python challenge!
I will make sure to spend some time every day coding along,
for a minimum of 10 minutes a day.
I'll be using Replit, an amazing online IDE so I can do thing
from my phone wherever I happen to be. No excuses for not coding
from the middle of a field!""" )
print("I am feeling 👌")
print("You can follow my progress at replit.com/@dannybuntu")
print("++++++++++++++++++++++++++++++++++++++++++++++++++++++++")
print("Hello Replit")
print("I hope the statement above does not constitute a legally binding agreement.")
print("The previous message uses Python syntax which is like this:")
print("print(\"text\")")
print("===========")
print("In C++, we usually type: cout >> \"text\" >> endl; ")
print("In Javascript, we usually type: console.log(\"text\")")
print("""
Come to think of it, I think this would look better:
C++
=================
cout >> "text" >> endl;
Javascript
=================
console.log("text");
""")