Skip to content

Commit f0ab0fb

Browse files
jean_guzmanjean_guzman
jean_guzman
authored and
jean_guzman
committed
first commit
1 parent 81b147a commit f0ab0fb

File tree

2 files changed

+113
-1
lines changed

2 files changed

+113
-1
lines changed

.gitignore

Lines changed: 112 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,112 @@
1+
# Created by .ignore support plugin (hsz.mobi)
2+
### Python template
3+
# Byte-compiled / optimized / DLL files
4+
__pycache__/
5+
*.py[cod]
6+
*$py.class
7+
8+
# C extensions
9+
*.so
10+
11+
# Distribution / packaging
12+
.Python
13+
env/
14+
build/
15+
develop-eggs/
16+
dist/
17+
downloads/
18+
eggs/
19+
.eggs/
20+
lib/
21+
lib64/
22+
parts/
23+
sdist/
24+
var/
25+
*.egg-info/
26+
.installed.cfg
27+
*.egg
28+
29+
# PyInstaller
30+
# Usually these files are written by a python script from a template
31+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
32+
*.manifest
33+
*.spec
34+
35+
# Installer logs
36+
pip-log.txt
37+
pip-delete-this-directory.txt
38+
39+
# Unit test / coverage reports
40+
htmlcov/
41+
.tox/
42+
.coverage
43+
.coverage.*
44+
.cache
45+
nosetests.xml
46+
coverage.xml
47+
*,cover
48+
49+
# Translations
50+
*.mo
51+
*.pot
52+
53+
# Django stuff:
54+
*.log
55+
56+
# Sphinx documentation
57+
docs/_build/
58+
59+
# PyBuilder
60+
target/
61+
62+
63+
64+
### JetBrains template
65+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion
66+
67+
*.iml
68+
69+
## Directory-based project format:
70+
.idea/
71+
# if you remove the above rule, at least ignore the following:
72+
73+
# User-specific stuff:
74+
# .idea/workspace.xml
75+
# .idea/tasks.xml
76+
# .idea/dictionaries
77+
78+
# Sensitive or high-churn files:
79+
# .idea/dataSources.ids
80+
# .idea/dataSources.xml
81+
# .idea/sqlDataSources.xml
82+
# .idea/dynamic.xml
83+
# .idea/uiDesigner.xml
84+
85+
# Gradle:
86+
# .idea/gradle.xml
87+
# .idea/libraries
88+
89+
# Mongo Explorer plugin:
90+
# .idea/mongoSettings.xml
91+
92+
## File-based project format:
93+
*.ipr
94+
*.iws
95+
96+
## Plugin-specific files:
97+
98+
# IntelliJ
99+
/out/
100+
101+
# mpeltonen/sbt-idea plugin
102+
.idea_modules/
103+
104+
# JIRA plugin
105+
atlassian-ide-plugin.xml
106+
107+
# Crashlytics plugin (for Android Studio and IntelliJ)
108+
com_crashlytics_export_strings.xml
109+
crashlytics.properties
110+
crashlytics-build.properties
111+
112+

100+ Python challenging programming exercises.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ print ','.join(items)
225225
Question 9
226226
Level 2
227227

228-
Question��
228+
Question:
229229
Write a program that accepts sequence of lines as input and prints the lines after making all characters in the sentence capitalized.
230230
Suppose the following input is supplied to the program:
231231
Hello world

0 commit comments

Comments
 (0)