Skip to content

Commit 8efb616

Browse files
M1 -- Practice Quiz: Hello World
1 parent f770e81 commit 8efb616

File tree

3 files changed

+55
-3
lines changed

3 files changed

+55
-3
lines changed

.idea/workspace.xml

Lines changed: 42 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Hell World
2+
print("Hello World form Python ")
3+
4+
# A Problem form the Practice Quiz: Hello World
5+
6+
ratio = ((1+(5**(1/2)))/2)
7+
print(ratio)
8+
9+
# calculate the square root of 9.
10+
#
11+
# Tip: to calculate the square root of a number x, you can use x**(1/2).
12+
x = (9**(1/2))
13+
print(x)

Python With Google--Crash Course on Python/Module01 - Hello Python/README.md

Whitespace-only changes.

0 commit comments

Comments
 (0)