-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfirst.py
More file actions
53 lines (51 loc) · 1.06 KB
/
first.py
File metadata and controls
53 lines (51 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
print("Hello World!")
fruit = ['a', 'b', 'c']
for fru in fruit:
print("H " + fru + " A")
print("Hello World!")
print("Hello World!")
x = 9
if x<5:
<<<<<<< HEAD
=======
print("small")
if x>5 and x<10:
print("large")
print(3/2)
print("Hello World!")
fruit = ['a', 'b', 'c']
for fru in fruit:
print("H " + fru + " A")
print("Hello World!")
print("Hello World!")
x = 9
if x<5:
>>>>>>> parent of 16dd4f8... update
print("small")
if x>5 and x<10:
print("large")
print(3/2)
<<<<<<< HEAD
print("Hello World!")
fruit = ['a', 'b', 'c']
for fru in fruit:
print("H " + fru + " A")
print("Hello World!")
print("Hello World!")
x = 9
if x<5:
print("small")
if x>5 and x<10:
print("large")
print(3/2)
cars = ['bmw', 'audi', 'toyato','BYD']
print(cars);print(sorted(cars));print(cars[0:2]);print(len(cars))
for car in cars:
print(car)
print('bmw' in cars)
squares = [5]
for value in range(1,10,2):squares.append(value**3);
print(squares);print(sum(squares));squares.reverse();print(squares)
a=1;b=10;c=20;print(a>b)
=======
>>>>>>> parent of 16dd4f8... update