Skip to content

Commit b03cc50

Browse files
committed
Update
1 parent d1900d4 commit b03cc50

File tree

2 files changed

+27
-23
lines changed

2 files changed

+27
-23
lines changed

Statistical-Python/StatsAss1.py

Whitespace-only changes.

school/QuizBee.py

Lines changed: 27 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,34 @@
1-
def questionOne():
2-
'''OUTPUT
3-
0
4-
2
5-
4
6-
6
7-
8'''
8-
for i in range(10):
9-
if i % 2 == 0:
10-
print(i)
1+
# def questionOne():
2+
# '''OUTPUT
3+
# 0
4+
# 2
5+
# 4
6+
# 6
7+
# 8'''
8+
# for i in range(10):
9+
# if i % 2 == 0:
10+
# print(i)
1111

1212

13-
def getThis():
14-
return "INTEL"
13+
# def getThis():
14+
# return "INTEL"
1515

1616

17-
def main():
18-
uInput = getThis()
19-
return uInput + "!!!"
17+
# def main():
18+
# uInput = getThis()
19+
# return uInput + "!!!"
2020

2121

22-
def start():
23-
print("b", end='')
24-
def end():
25-
return "a"
26-
print(end(), end='')
27-
print("g")
22+
# def start():
23+
# print("b", end='')
24+
# def end():
25+
# return "a"
26+
# print(end(), end='')
27+
# print("g")
2828

29-
def example():
30-
print("\\")
29+
# def example():
30+
# print("\\")
31+
32+
list_name = ["Shawn", "Jason", "Justing", "Angel"]
33+
34+
print(list_name[0][0])

0 commit comments

Comments
 (0)