Skip to content

Commit c9bf427

Browse files
Skill 3 --Use variables with assignment and arithmetic operators
1 parent a70a10c commit c9bf427

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

.idea/workspace.xml

-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Python With Google--Crash Course on Python/Module01 - Hello Python/Study Guide- Module 1 Graded Quiz.py

+9
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,12 @@
3737
" Give it a try , Happy coding "
3838

3939

40+
# Skill 3 --Use variables with assignment and arithmetic operators
41+
#
42+
# Assignment of values to the variables.
43+
years =10
44+
weeks_in_decade = 52
45+
# This variable is assigned an arithmetic calculation
46+
# print the calculation stored int the "weeks_in_year" variables
47+
print(weeks_in_decade)
48+

0 commit comments

Comments
 (0)