Skip to content

Commit 9377cf2

Browse files
Study Guide: Module 1 Graded Quiz >> Skill 01
1 parent a6d42c7 commit 9377cf2

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed

.idea/workspace.xml

Lines changed: 1 addition & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#Study Guide: Module 1 Graded Quiz
2+
# Coding Skills
3+
4+
# Syntax for printing a string text
5+
print("I love Python ")
6+
7+
# Syntax for printing numeric values
8+
print(360)
9+
print(3*12)
10+
print(1+1+2+7+9/2)
11+
12+
# Syntax for printing the value of a variable
13+
value = 6*5 +2
14+
print(value)

0 commit comments

Comments
 (0)