Skip to content

Commit 81a6cca

Browse files
authored
Add files via upload
1 parent 885c794 commit 81a6cca

22 files changed

+422
-0
lines changed

ArithmeticOperations.py

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
print(1+1) #Addition
2+
print(3-1) #Subtraction
3+
print(2*1) #Multiplication
4+
print(2/1) #Division
5+
print(2//1) #Division,interger
6+
print(2**1) #Power
7+
print(2%1) #Modulus
8+
9+
#Argumented Assign Operator
10+
x = 10
11+
x -= 3
12+
x += 3
13+
print(x)
14+
15+
#OperatorPrecedence
16+
x = 10 + 3 * 2
17+
print(x)
18+
x = (2 + 3) * 10 - 3
19+
print(x)
20+
21+
#MathFunctions
22+
x = 2.9
23+
print(abs(-2.9))
24+
print(round(x))
25+
import math
26+
print(math.floor(x))

Collections.py

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#Collection
2+
#List
3+
#Set
4+
#Tuple
5+
6+
fruits = ["apple", "orange", "banana", "coconut"]
7+
#print(fruits[::])
8+
#for x in fruits:
9+
# print(x)
10+
print(help (fruits))

ComparisonOperators.py

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
temperature = 30
2+
3+
if temperature == 30:
4+
print("It's a hot day")
5+
else:
6+
print("It's not a hot day")
7+
8+
#EXERCISE
9+
number_of_characters = 3
10+
11+
if number_of_characters < 3:
12+
print("Name must atleast be 3 characters")
13+
if number_of_characters > 50:
14+
print("Name can be a maximum of 50 characters")
15+
else:
16+
print("Name looks good!")
17+
18+
#RECAP
19+
name = "TRUST"
20+
21+
if len(name) < 3:
22+
print("Name must atleast be 3 characters")
23+
elif len(name) > 50:
24+
print("Name can be a maximum of 50 characters")
25+
else:
26+
print("Name looks good!")

FormattedStrings.py

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
first = 'John'
2+
last = 'Smith'
3+
message = first +'[' + last + '] is a coder'
4+
msg = f'{first} [{last}] is a coder'
5+
print(msg)
6+
print(10878-253-3350-7430)

GettingInput.py

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
name = input('What is your name? ')
2+
print('Hi ' + name)
3+
4+
#EXERCISE
5+
name = input('What is your name?' )
6+
color = input('What is your favorite color? ')
7+
print( name + ' likes ' + color + '.')

HelloWorld.py

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
print("Hello Trust The Process")
2+
print("0----")
3+
print(" ||||")
4+
print("*" * 10)

IfStatements.py

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
#pcc simple example
2+
cars = ['audi','bmw','subaru','toyota']
3+
for car in cars:
4+
if car == 'bmw':
5+
print(car.upper())
6+
else:
7+
print(car.title())
8+
print()
9+
cities = ['cities','lusaka','harare','lilongwe',]
10+
for city in cities:
11+
if city == 'cities':
12+
print(city.upper())
13+
else:
14+
print(city.title())
15+
print()
16+
17+
#Conditional Tests
18+
#Checking For Inequality
19+
requested_topping = 'mushrooms'
20+
if requested_topping != 'anchovies':
21+
print("Hold the anchovies!")
22+
#Numerical Camparisons
23+
answer = 17
24+
if answer != 42:
25+
print("That is not the correct answer. Please try again!")
26+
age = 19
27+
if age != 21:
28+
print("True")
29+
#Checking Multiple Conditions
30+
age_0 = 19
31+
if age_0 != 22:
32+
print("True")
33+
if age_0 <= 21:
34+
print("True")
35+
if age_0 >= 21:
36+
print("True")
37+
#IfStatement(CodeBasics)
38+
num = input("Enter a Number:")
39+
num = int(num)
40+
if num%2==0:
41+
print("Number is even")
42+
else:
43+
print("Number is odd")
44+
45+

LogicalOperators.py

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
has_high_income = True
2+
has_good_credit = False
3+
4+
if has_high_income or has_good_credit:
5+
print("Eligibe for loan")
6+
if has_high_income and not has_good_credit:
7+
print("Eligible for loan")

PROJECTWeightConverter.py

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
weight = int(input('Weight: '))
2+
unit = input('(L)bs or (K)g: ')
3+
if unit.upper() == "L":
4+
converted = weight * 0.45
5+
print(f"You are {converted} kilos.")
6+
else:
7+
converted = weight / 0.45
8+
print(f"You are {converted} pounds.")
9+
10+
11+
#Further_Thought
12+
currency = int(input('Currency: '))
13+
unit = input('(ZMW)K or (USD)$: ')
14+
if unit.upper() == "K100":
15+
forex = currency * 0.0387
16+
print(f"You are receiving {forex} dollars.")
17+
else:
18+
forex = currency / 0.0387
19+
print(f"You are receiving {forex} kwacha")

Parameters.py

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#PARAMETERS
2+
def greet_user(first_name, last_name):
3+
print(f'Hi {first_name}{last_name}!')
4+
print('Welcome aboard')
5+
6+
7+
print("Start")
8+
greet_user("John"," Smith")
9+
greet_user("Mary"," Johnsone")
10+
print("Finish")

StringsMethod.py

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
course = 'Python For Beginners'
2+
print(len(course))
3+
print(course.upper())
4+
print(course.lower())
5+
print(course.title())
6+
print(course.strip())
7+
print(course.rstrip())
8+
print(course.lstrip())
9+
print(course.find('n'))
10+
print(course.replace('Python For', 'Absolute'))
11+
print('Python' in course)
12+
print('Absolute' in course)

Tuples.py

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
zam = (1,2,3,4,5,6,7,8,9)
2+
zam = 1,2,3
3+
zam =([1,2,3])
4+
zam = tuple("123456789")
5+
am = zam[4]
6+
print(am)
7+
print(zam)
8+
9+
Muchinga = (["Nakonde","Isoka","Kasama"])
10+
Muchinga[2] = "Chinsali"
11+
print(Muchinga)
12+
13+
Piki = ('Bike ')*3
14+
print(Piki)
15+
16+
Cities=[(Ndola, Dodoma, Wuhan), (Lusaka, Mbeya, Beijing), (Livingstone,Daressalam,Shanghai)]
17+
seq = [(1,2,3),(4,5,6),(7,8,9)]
18+
def for a,b,c in seq

TypeConversion.py

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
birth_year = input("Birth Year: ")
2+
print(type(birth_year))
3+
age = 2024 - int(birth_year)
4+
print(type(age))
5+
print(age)
6+
7+
#EXERCISE
8+
weight = input("Weight: ")
9+
print(weight + "pounds ")
10+
final_weight = int(weight)*0.454
11+
print(final_weight)
12+

WhileLoops.py

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
i = 1
2+
while i <= 5:
3+
print('*' * i)
4+
i = i + 1
5+
print("Done")

copinforloop.py

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# List of animals
2+
animal_names = ["Dog", "Cat", "Horse"]
3+
4+
# Print the names of each animal
5+
for animal in animal_names:
6+
print(animal)
7+
8+
# Statements about each animal
9+
print("\nStatements about each animal:")
10+
print(f"A {animal_names[0].lower()} would make a great pet.")
11+
print(f"A {animal_names[1].lower()} is an excellent companion.")
12+
print(f"Owning a {animal_names[2].lower()} can be rewarding.")
13+
14+
# Common characteristic
15+
print("\nAny of these animals would make a great pet!")

forloops.py

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
languages = ['chinese','swahili','english','namwanga']
2+
for language in languages:
3+
print(language.title() +" is one of the languages I speak.")
4+
print("I can't wait to fluently speak "+language.title() + ".\n")
5+
print("Every language helps me to communicate with people from a different country." + "\n")
6+
#PIZZAS
7+
pizzas = ['Chicago pizza','New York pizza','Miami pizza']
8+
for pizza in pizzas:
9+
print("I have tasted the " + pizza.title() + " before.")
10+
print("They all tasted good.")
11+
print("\n")
12+
#ANIMALS
13+
#List of animals
14+
animals = ["Lion","Cheetah","Tiger"]
15+
for animal in animals:
16+
print("A " +animal.title() + " can be see in a park.")
17+
print( "All are cats of the world.")

functions.py

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
#GreetUser
2+
def greet_user(username):
3+
"""Display a simple greeting."""
4+
print("Ni Hao, " + username.title() + "!")
5+
6+
greet_user('Jesse')
7+
greet_user('Trust')
8+
print("...\n")
9+
10+
#TheAddition
11+
def add(num1: int, num2: int) -> int:
12+
"""Add two numbers"""
13+
num3 = num1 + num2
14+
15+
return num3
16+
17+
#Driver Code
18+
num1, num2 = 5, 15
19+
ans = add(num1, num2)
20+
print(f"The addition of {num1} and {num2} results {ans}.")
21+
print("...\n")
22+
23+
#Some More Functions
24+
def is_prime(n):
25+
if n in [2,3]:
26+
return True
27+
if (n == 1) or (n%2 ==0):
28+
return False
29+
r = 3
30+
while r * r <= n:
31+
if n % r == 0:
32+
return False
33+
r += 2
34+
return True
35+
print(is_prime(78), is_prime(79))
36+
print("...\n")
37+
38+
#TRY_IT_YOURSELF
39+
#Message
40+
def display_message(Audience):
41+
"""Display an Announcement"""
42+
print( Audience.title() + ", I am learning about this Chapter!")
43+
44+
display_message('William S. Cleveland')
45+
display_message('Guido Vas Rossum')
46+
print("...\n")
47+
48+
#Favorite_Book
49+
def favorite_book(title):
50+
"""Display a message about someone's favorite book."""
51+
print(f"One of my favorite books is " + title.title() + "!")
52+
favorite_book('Atomic Habits')
53+
favorite_book('Richest Man in Babylon')

ifcodebasics.py

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#AnotherExample(CodeBasics)
2+
Swahili = ["Mayai", "Wari", "Ugari"]
3+
Namwanga = ["Amenza","Umupunga", "Insima"]
4+
English = ["Eggs", "Rice","Nshima"]
5+
dish = input("Enter a dish name:")
6+
if dish in Swahili:
7+
print("Swahili")
8+
elif dish in Namwanga:
9+
print("Namwanga")
10+
elif dish in English:
11+
print("English")
12+
else:
13+
print("Unknown Language")
14+

pythongame.py

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
import random
2+
import math
3+
# Taking Inputs
4+
lower = int(input("Enter Lower bound:- "))
5+
6+
# Taking Inputs
7+
upper = int(input("Enter Upper bound:- "))
8+
9+
# generating random number between
10+
# the lower and upper
11+
x = random.randint(lower, upper)
12+
print("\n\tYou've only ",
13+
round(math.log(upper - lower + 1, 2)),
14+
" chances to guess the integer!\n")
15+
16+
# Initializing the number of guesses.
17+
count = 0
18+
19+
# for calculation of minimum number of
20+
# guesses depends upon range
21+
while count < math.log(upper - lower + 1, 2):
22+
count += 1
23+
24+
# taking guessing number as input
25+
guess = int(input("Guess a number:- "))
26+
27+
# Condition testing
28+
if x == guess:
29+
print("Congratulations you did it in ",
30+
count, " try")
31+
# Once guessed, loop will break
32+
break
33+
elif x > guess:
34+
print("You guessed too small!")
35+
elif x < guess:
36+
print("You Guessed too high!")
37+
38+
# If Guessing is more than required guesses,
39+
# shows this output.
40+
if count >= math.log(upper - lower + 1, 2):
41+
print("\nThe number is %d" % x)
42+
print("\tBetter Luck Next time!")

0 commit comments

Comments
 (0)