#1 Write Python code that prints your name, student number and email address print("Sibin Francis") print("DSML36-40") print("sibinfrancis009@gmail.com")
#2 Write Python code that prints your name, student number and email address using escape sequences. print("Sibin Francis\nDSML36-40\nsibinfrancis009@gmail.com")
#3 Write Python code that add, subtract, multiply and divide the two numbers. You can use the two numbers 14 and 7.
a=14 b=7
print(a,'+',b,'=',a+b) print(a,'',b,'=',ab) print(a,'-',b,'=',a-b) print(a,'/',b,'=',a//b)
#4 Write Python code that displays the numbers from 1 to 5 as steps.
for i in range(1,6): print(i)
5 Write Python code that outputs the following sentence (including the quotation marks and line break) to the screen:
print('"SDK" stands for "Software Development Kit", \nwhereas \n"IDE" stands for "Integrated Development Environment".')
#6 Practice and check the output
print("python is an "awesome" language.") print("python\n\t2023") print('I'm from Entri.\b') print("\65") print("\x65") print("Entri", "2023", sep="\n") print("Entri", "2023", sep="\b") print("Entri", "2023", sep="*", end="\b\b\b\b")
#7 Define the variables below. Print the types of each variable. # What is the sum of your variables? (Hint: use a type conversion function.) # What datatype is the sum? num=23 textnum="57" decimal=98.3
num=23 textnum="57" decimal=98.3
print(type(num)) print(type(textnum)) print(type(decimal))
total =num +int(textnum)+ decimal print("the sum of your variables","=",total)
print("Datatype of total", "=", type(total))
#8 calculate the number of minutes in a year using variables for each unit of time. # print a statement that describes what your code does also. # Create three variables to store no of days in a year, minute in a hour, hours in a day, # then calculate the total minutes in a year and print the values # (hint) total number of minutes in an year =No.of days in an year * Hours in a day * Minutes in an hour Exercise
No_of_days_in_an_year = 365 Hours_in_a_day = 24 Minutes_in_an_hour = 60
total_number_of_minutes_in_an_year = No_of_days_in_an_year * Hours_in_a_day * Minutes_in_an_hour print("total number of minutes in an year",'=', total_number_of_minutes_in_an_year)
#9 Write Python code that asks the user to enter his/her name and then output/prints his/her name with a greeting.
i=input("Please enter the Name :") print(f"Hi{i}, Welcome to Python programing:")
#10 Name your file: PoundsToDollars.py Write a program that asks the user to enter an amount in pounds (£) # and the program calculates and converts an amount in dollar ($)
pounds = float(input("Please enter an amount in pounds:")) conversion_rate = 1.33 dollars = pounds * conversion_rate print(f"£{pounds} are ${dollars:}")