#Programmer: Akinwale Owi #Company: Dagba Computers #Program Purpose:Convert user input to uppercase and lowercase #Start of Program #prompting user for input normalInput=input(‘please enter a string’) #printing to…… Read more “Python #7: How to convert user input to uppercase and/or lowercase”
Category: Python
Python #6: Takes in user input on a loop then averages the total
#Programmer: Akinwale Owi #Company Name: Dagba Computers #Program Purpose: Average User Input #Beginning of Program #initializing variable newNumber will hold all the user inputted numbers newNumber =…… Read more “Python #6: Takes in user input on a loop then averages the total”
Link to Free Python Ide That Runs in Your Web Browser!
Click This Link For A Free Python IDE that runs in your browser Will run in Chrome 18+, Firefox 11+, and Safari 6+. Some features may work…… Read more “Link to Free Python Ide That Runs in Your Web Browser!”
Python #5: Basic While Loop
#Programmer: Akinwale Owi #Company: Dagba Computers #Program: Purpose:Basic While Loop #Beginning of Program #While Loop Variable c = 0 #Beginning of While Loop while(c<5): print(‘Value of C…… Read more “Python #5: Basic While Loop”
Python #4: How to Implement A Counter
#Programmer: Akinwale Owi #Company: Dagba Computers #Program: Purpose: Basic Counter #Beginning of Program #Counter variable counter = 0 #loopBreak is the variable I will be saving responses…… Read more “Python #4: How to Implement A Counter”
Python #3:How to Intake & Output Variables in Python
#Programmer: Akinwale Owi #Company: Dagba Computers #Program: Purpose: How to Intake and Output Variables #Beginning of program #Food is our variable to save the response food=input(‘What is…… Read more “Python #3:How to Intake & Output Variables in Python”
Python #2: Decreasing Loop Progam
#DagbaComputers #Python #Programmer Akinwale Owi # #How to write a decreasing for loop in Python for decreasingCounter in range(10,-1,-1): print(decreasingCounter) #space print(”) #Will print when loop is…… Read more “Python #2: Decreasing Loop Progam”
Python #1: How To Print Line By Line + Side To Side
#DagbaComputers #This is how to print line by line print( ‘First Line’) print(‘Second Line’) #Space print(”); #Below, is how to print side by side print(‘First part of…… Read more “Python #1: How To Print Line By Line + Side To Side”
Python #0: How to Print in Python
#Programmer: Akinwale Owi #Company: Dagba Computers #Program: Purpose: Basic Output #Beginning of Program print(‘Welcome to Python from Dagba Computers!’)