Skip to content

Commit 4239e6c

Browse files
committed
First commit
1 parent c3d8403 commit 4239e6c

File tree

1 file changed

+239
-0
lines changed

1 file changed

+239
-0
lines changed

ADAhomework-_-.py

+239
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,239 @@
1+
# # # # grades = ['34','43','9','67','100']
2+
# # # # print(grades)
3+
# # # # print(grades[2])
4+
# # # # grades[2]=['78'] question 1
5+
6+
# # # # print(grades)
7+
# # # # print(grades[2])
8+
9+
10+
11+
# # # # grades = ['34','43','9','67','100']
12+
# # # # print(grades[0]+ ' ' +grades[4])
13+
# # # # print(grades[-2])
14+
15+
16+
17+
# # # # fruits = ['apple','banana','orange','grape']
18+
# # # # print(fruits[1])
19+
# # # # print(type(fruits[0][2]))
20+
# # # # string1 = 'Artemis'
21+
# # # # print([0])
22+
23+
24+
25+
# # # # picture=[[1,2,3],
26+
# # # # [4,5,6],
27+
# # # # [7,8,9]]
28+
# # # # print(picture)
29+
# # # # print(picture[1][0])
30+
# # # # (picture[0][0])=2
31+
# # # # print(picture)
32+
33+
34+
35+
# # # numbers = []
36+
# # # numbers.append(99)
37+
# # # numbers.append(98)
38+
# # # numbers.append(99)
39+
# # # numbers.append(100)
40+
# # # numbers.append(100)
41+
42+
# # # print (numbers)
43+
44+
45+
46+
47+
# # # # Strings '123' "123" """123"""
48+
# # # # Floating-point values (decimal values) <-- these are called either doubles or float
49+
# # # # ints (integers) wholenumbers postivie or negative
50+
# # # # chars 'a' '@' '1'
51+
# # lists ['a', 'b']
52+
# # # #
53+
54+
55+
56+
57+
58+
59+
# # user_input = input('Input your first number(0 - 9): ')
60+
# # # print(user_input)
61+
# # a = 0
62+
# # b = 1
63+
# # c = 2
64+
# # d = 3
65+
# # e = 4
66+
# # f = 5
67+
# # g = 6
68+
# # h = 7
69+
# # i = 8
70+
# # j = 9
71+
72+
73+
74+
# # if (user_input == 'a','b','c','d','e','f','g','h','i','j'):
75+
# # print('')
76+
# # if (user_input == 'a','b','c','d','e','f','g','h','i','j'):
77+
# # print('')
78+
# # if (user_input == 'a','b','c','d','e','f','g','h','i','j'):
79+
# # print('')
80+
# # if (user_input == 'a','b','c','d','e','f','g','h','i','j'):
81+
# # print('')
82+
# # if (user_input == 'a','b','c','d','e','f','g','h','i','j'):
83+
# # print('')
84+
# # if (user_input == 'a','b','c','d','e','f','g','h','i','j'):
85+
# # print('')
86+
# # if (user_input == 'a','b','c','d','e','f','g','h','i','j'):
87+
# # print('')
88+
# # if (user_input == 'a','b','c','d','e','f','g','h','i','j'):
89+
# # print('')
90+
# # if (user_input == 'a','b','c','d','e','f','g','h','i','j'):
91+
# # print('')
92+
# # if (user_input == 'a','b','c','d','e','f','g','h','i','j'):
93+
# # print('')
94+
# # else:
95+
# # print('YOU ARE NOT FOLLOWING THE INSTRUCTIONS!')
96+
97+
# # user_input_2 = input('Input your second number(0 - 9): ')
98+
# # print(user_input)
99+
100+
# # if (user_input_2 == 'a','b','c','d','e','f','g','h','i','j'):
101+
# # print('')
102+
# # if (user_input_2 == 'a','b','c','d','e','f','g','h','i','j'):
103+
# # print('')
104+
# # if (user_input_2 == 'a','b','c','d','e','f','g','h','i','j'):
105+
# # print('')
106+
# # if (user_input_2 == 'a','b','c','d','e','f','g','h','i','j'):
107+
# # print('')
108+
# # if (user_input_2 == 'a','b','c','d','e','f','g','h','i','j'):
109+
# # print('')
110+
# # if (user_input_2 == 'a','b','c','d','e','f','g','h','i','j'):
111+
# # print('')
112+
# # if (user_input_2 == 'a','b','c','d','e','f','g','h','i','j'):
113+
# # print('')
114+
# # if (user_input_2 == 'a','b','c','d','e','f','g','h','i','j'):
115+
# # print('')
116+
# # if (user_input_2 == 'a','b','c','d','e','f','g','h','i','j'):
117+
# # print('')
118+
# # if (user_input_2 == 'a','b','c','d','e','f','g','h','i','j'):
119+
# # print('')
120+
# # else:
121+
# # print('YOU ARE NOT FOLLOWING THE INSTRUCTIONS!')
122+
123+
# # if (user_input + user_input_2 == 'a','b','c','d','e','f','g','h','i','j'):
124+
# # print(user_input, '+' ,user_input_2)
125+
126+
127+
128+
# # first_number = input('Please input your first number: ')
129+
# # print('Your number is' ,first_number )
130+
# # second_number = input('Please input your second number: ')
131+
# # print('Your number is' ,second_number )
132+
133+
134+
135+
# # sum = int(first_number) + int(second_number)
136+
# # # sum2 = 4 + 9
137+
138+
# # # print('4 + 9 =', sum2)
139+
# # print(first_number , '+' ,second_number, '=' ,sum )
140+
141+
142+
143+
# # first_number = input('Please input your first number: ')
144+
# # print('Your number is' ,first_number )
145+
# # second_number = input('Please input your second number: ')
146+
# # print('Your number is' ,second_number )
147+
# # try:
148+
# # sum = int(first_number) + int(second_number)
149+
# # print(first_number , '+' ,second_number, '=' ,sum )
150+
# # except Exception as e:
151+
# # print('YOU ARE NOT FOLLOWING THE INSTRUCTIONS! PLEASE RETRY WITH AN INTEGER!')
152+
153+
154+
# # try:
155+
# # first_number = input('Please input your first number: ')
156+
157+
# # second_number = input('Please input your second number: ')
158+
159+
# # sum = int(first_number) + int(second_number)
160+
161+
# # print('Your number is' ,first_number )
162+
# # print('Your number is' ,second_number )
163+
# # print(first_number , '+' ,second_number, '=' ,sum )
164+
# # except:
165+
# # print('YOU ARE NOT FOLLOWING THE INSTRUCTIONS! PLEASE RETRY WITH AN INTEGER!')
166+
167+
168+
169+
170+
# # if (condition):
171+
# # # code that executes iff condition is true
172+
# # else:
173+
# # # code that executes iff condition is false
174+
175+
# # and or not
176+
# # operand1 or operand2
177+
178+
179+
# user_input = int(input('Please enter a number: '))
180+
# remainder = user_input % 2
181+
# if(remainder == 0):
182+
# print('Your number is even')
183+
# if(remainder == 1):
184+
# print('Your number is odd')
185+
186+
187+
188+
189+
# # while
190+
# # for
191+
192+
# # while (condition):
193+
# # # code that executes WHILE the condition is true
194+
195+
# # number = 2
196+
# # while (number >= 0):
197+
# # print(number, end='')
198+
# # number -= 1
199+
200+
# # user_input = int(input('Enter the number 7: '))
201+
# # while (user_input != 7):
202+
# # print('Bad Boy')
203+
# # user_input = int(input('Your number was not 7, please enter the number 7: '))
204+
205+
# # for i in range(1,10):
206+
# # print(i)
207+
208+
# string1 = 'hashim'
209+
# for letter in string1:
210+
# print(letter)
211+
212+
213+
214+
# myColor = input('Please input your color: ')
215+
# if(myColor == 'Red' or myColor == 'RED' or myColor == 'red'):
216+
# print('Your color is red!')
217+
# if(myColor != 'Red' and myColor != 'RED' and myColor != 'red'):
218+
# print('Your color is NOT red!')
219+
220+
# user_input = int(input('Please input your number: '))
221+
# if (user_input >4 and user_input <10):
222+
# print('Your number is between 5-10')
223+
# if (user_input <4 or user_input >10): # really good check, althuogh if the user entered a letter(s), what's the problem?
224+
# print('Your number is NOT between 5-10')
225+
226+
my_number = int(input('Please input your number: '))
227+
remainder = my_number % 2
228+
229+
if (my_number > 0 and remainder == 0):
230+
print('You have an even positive number')
231+
if (my_number > 0 and remainder == 1):
232+
print('You have an odd positive number')
233+
if (my_number < 0 and remainder == 0):
234+
print('You have an even negative number')
235+
if (my_number < 0 and remainder == 1):
236+
print('You have an odd negative number')
237+
if (my_number == 0):
238+
print('Your number is zero')
239+

0 commit comments

Comments
 (0)