Skip to content

Commit 9455077

Browse files
Module 10
1 parent c2bed55 commit 9455077

File tree

6 files changed

+105
-0
lines changed

6 files changed

+105
-0
lines changed

Module10Lists/Module10Lists.sln

+22
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}") = "Module10Lists", "Module10Lists\Module10Lists.pyproj", "{693EB94A-39ED-4936-9E76-5859D192CC07}"
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+
{693EB94A-39ED-4936-9E76-5859D192CC07}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{693EB94A-39ED-4936-9E76-5859D192CC07}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{693EB94A-39ED-4936-9E76-5859D192CC07}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{693EB94A-39ED-4936-9E76-5859D192CC07}.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 @@
1+
print('Hello World')
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
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>693eb94a-39ed-4936-9e76-5859d192cc07</ProjectGuid>
7+
<ProjectHome>.</ProjectHome>
8+
<StartupFile>Module10Lists.py</StartupFile>
9+
<SearchPath>
10+
</SearchPath>
11+
<WorkingDirectory>.</WorkingDirectory>
12+
<OutputPath>.</OutputPath>
13+
<Name>Module10Lists</Name>
14+
<RootNamespace>Module10Lists</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="Module10Lists.py" />
26+
</ItemGroup>
27+
<Import Project="$(MSBuildToolsPath)\Microsoft.Common.targets" />
28+
</Project>
+22
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}") = "PythonApplication3", "PythonApplication3\PythonApplication3.pyproj", "{C9341719-1D4E-4CE1-B25C-D947C4F5A29B}"
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+
{C9341719-1D4E-4CE1-B25C-D947C4F5A29B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{C9341719-1D4E-4CE1-B25C-D947C4F5A29B}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{C9341719-1D4E-4CE1-B25C-D947C4F5A29B}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{C9341719-1D4E-4CE1-B25C-D947C4F5A29B}.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,4 @@
1+
print('Hello World')
2+
i = 1
3+
i += 1
4+
print(i)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
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>c9341719-1d4e-4ce1-b25c-d947c4f5a29b</ProjectGuid>
7+
<ProjectHome>.</ProjectHome>
8+
<StartupFile>PythonApplication3.py</StartupFile>
9+
<SearchPath>
10+
</SearchPath>
11+
<WorkingDirectory>.</WorkingDirectory>
12+
<OutputPath>.</OutputPath>
13+
<Name>PythonApplication3</Name>
14+
<RootNamespace>PythonApplication3</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="PythonApplication3.py" />
26+
</ItemGroup>
27+
<Import Project="$(MSBuildToolsPath)\Microsoft.Common.targets" />
28+
</Project>

0 commit comments

Comments
 (0)