Function
Addition
ExamplePrint (2) – integer Print (2.5) – floating point Print (“Hello”) – string Print (mystr) – variable Print (mystr,”Hi”,2,1.0) -- commas mystr = “Hi” mystr ← name “Hi” ← value can change print (int(1.5)) → 1 print (int(“2”)) → 2 print (float(1)) → 1.0 anything to a float Modulo/Remainder % print (4%2) → 0 print (30%7) → 2 Area of Circle""" Python Intro Assignment #2 name student number """ #Ask the user for a radius of a circle user_radius = input("What is a radius of a circle?") #Convert the given radius to a floating point radius = float(user_radius) #Make a variable called pi pi = float(3.1415) #Calculate the area of the circle using exponents area = pi(radius*2) #Display the area of the circle to the user print ("The area of the circle is", area) |
Multiplication and exponents
Vocabulary
Countdown machineuser_number = input("What number do you want to count down? ") number = int(user_number) countdown_string = ' ' while number > 0: countdown_number = countdown_string + str(number) + " " number = number - 1 #print(number) print (countdown_string) Sort word per linemystr = "Hello" letter_num = 0 while letter_num < len(mystr): print (mystr[letter_num]) letter_num = letter_num + 1 H e l l o Sort fruit listfruits = [] #an empty list for number in range(5): user_fruit = input("Please enter a fruit") fruits.append(user_fruit) print ("Size of fruit list is", len(fruits)) fruits.sort() for fruit in fruits: print ("Fruit: ", fruit) |
Convert to binaryuser_number = ' ' while user_number != ' 0 ' : user_number = input ("Enter a number to convert to binary") number = int(user_number) binary_string = ' ' while (number > 0): remainder = number%2 binary_string = str(remainder)+ binary_string number = number//2 print ("Binary string is", binary_string) Naming ConventionRule for giving name - letter - numbers - underscore _ Valid name - _myStr - my3 - Hello_there Invalid name - 3my=”hi” -- cannot start with number - first name=”hi” - first-name - first+name Print Namename = "tim GIRARD" print (name.upper()) → TIM GIRARD print (name.lower()) → tim girard print (name.capitalize()) → Tim girard print (name.title()) → Tim Girard Math
Reverse Word
|
Cheatography
https://cheatography.com
Created By
Metadata
Comments
No comments yet. Add yours below!
Add a Comment