Skip to content

Commit c2a0632

Browse files
module 4 working with numbers
1 parent 873bd13 commit c2a0632

File tree

4 files changed

+83
-0
lines changed

4 files changed

+83
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 2013
4+
VisualStudioVersion = 12.0.30723.0
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{888888A0-9F3D-457C-B088-3A5042F75D52}") = "module4WorkingWithNumbers", "module4WorkingWithNumbers\module4WorkingWithNumbers.pyproj", "{F5ACBB51-6603-49B5-9C79-6C85BC5C3B4E}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{F5ACBB51-6603-49B5-9C79-6C85BC5C3B4E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{F5ACBB51-6603-49B5-9C79-6C85BC5C3B4E}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{F5ACBB51-6603-49B5-9C79-6C85BC5C3B4E}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{F5ACBB51-6603-49B5-9C79-6C85BC5C3B4E}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
EndGlobal
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
salary = input("please enter your salary ")
2+
bonus = input("please enter your bonus ")
3+
4+
paycheckAmount = float(salary) + float(bonus)
5+
6+
print(paycheckAmount)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
area = 0
2+
height = 10
3+
width = 20
4+
5+
#calculate the area of a triangle
6+
area = width * height /2
7+
8+
#printing formatted float value with 2 decimal places
9+
print("the area of the triangle would be %.2f" % area)
10+
11+
#printing the formatted decimal number with right justified to take up 6 spaces
12+
#with leading zeros
13+
print("My favorite number is %06d !" % 42)
14+
15+
#do the same thing with the .format syntax to include numbers our output
16+
print("the area of the triangle would be {0:f} ".format(area))
17+
print("my favorite number is {0:d} ".format(42))
18+
19+
#this is an example with multiple numbers
20+
#I have used the \ to indicate command continues on next line
21+
print("Here are three numbers! " + \
22+
"The first is {0:d} The second is {1:4d} and {2:d}".format(7,8,9))
23+
24+
25+
26+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup>
4+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5+
<SchemaVersion>2.0</SchemaVersion>
6+
<ProjectGuid>f5acbb51-6603-49b5-9c79-6c85bc5c3b4e</ProjectGuid>
7+
<ProjectHome>.</ProjectHome>
8+
<StartupFile>AskUserForInput.py</StartupFile>
9+
<SearchPath>
10+
</SearchPath>
11+
<WorkingDirectory>.</WorkingDirectory>
12+
<OutputPath>.</OutputPath>
13+
<Name>module4WorkingWithNumbers</Name>
14+
<RootNamespace>module4WorkingWithNumbers</RootNamespace>
15+
</PropertyGroup>
16+
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
17+
<DebugSymbols>true</DebugSymbols>
18+
<EnableUnmanagedDebugging>false</EnableUnmanagedDebugging>
19+
</PropertyGroup>
20+
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
21+
<DebugSymbols>true</DebugSymbols>
22+
<EnableUnmanagedDebugging>false</EnableUnmanagedDebugging>
23+
</PropertyGroup>
24+
<ItemGroup>
25+
<Compile Include="AskUserForInput.py" />
26+
<Compile Include="module4WorkingWithNumbers.py" />
27+
</ItemGroup>
28+
<Import Project="$(MSBuildToolsPath)\Microsoft.Common.targets" />
29+
</Project>

0 commit comments

Comments
 (0)