- Видео 127
- Просмотров 276 690
Prof. Touchette
Добавлен 21 мар 2012
Видео
Python Read File
Просмотров 578 месяцев назад
Python read csv file and split into list for processing. Find highest wage value and overall wage average. Thumbnail csv icon attributed to freepik.com at www.freepik.com/icon/csv_9159105
Python File Read Write Clean Data
Просмотров 558 месяцев назад
Python read csv file, clean up data (remove spaces, title formatting), write csv. Thumbnail csv icon attributed to freepik.com at www.freepik.com/icon/csv_9159105
Python List (Store Example)
Просмотров 448 месяцев назад
Using Python List to add receipt type functionality to cheese store example.
Python Tuples (Store Example)
Просмотров 308 месяцев назад
Using Python (Lists and) Tuples in edit of previous store example.
Python Idle Debug Function
Просмотров 2169 месяцев назад
Using Python Idle debug to trace function call.
Python Debug (Function Trace)
Просмотров 1389 месяцев назад
Using debug to trace a function in Python to monitor local variables. Using block comment in VS Code and Replace Symbol.
Python Function (for Store Menu)
Просмотров 699 месяцев назад
Python Function for store menu to modularize previous store menu program.
Python Menu Selection (Shop Example)
Просмотров 1189 месяцев назад
Python item menu selection example for a cheese shop.
Python any number of store items
Просмотров 439 месяцев назад
Python program to input any number of grocery store items and calculate total, including a modification for sales tax and formatting using the Python format function.
Flowchart Loop for Any Number of Items
Просмотров 1089 месяцев назад
Flowchart Loop for Any Number of Items
Python Count and Average Numbers Loop
Просмотров 3369 месяцев назад
Python Counter Controlled While Loop to Count and to Average Numbers
Flowchart to Calculate Average
Просмотров 2,5 тыс.9 месяцев назад
Flowchart logic to calculate the average of a set of numbers.
Flowchart for Counter Controlled While Loop
Просмотров 2039 месяцев назад
Flowchart logic for counter controlled "while" loop / repetition structure
Python Weekly Pay Calculation 2.0 Including Possibility of Overtime
Просмотров 2009 месяцев назад
Python program to calculate weekly pay given hours worked and hourly pay rate with decision to determine if overtime is calculated.
Flowchart for Weekly Pay Including Possible Overtime
Просмотров 6119 месяцев назад
Flowchart for Weekly Pay Including Possible Overtime
Python in Microsoft Visual Studio Code Install
Просмотров 8910 месяцев назад
Python in Microsoft Visual Studio Code Install
C++ Letter Number Substitution Logic Problem (part 2 coded solution)
Просмотров 1374 года назад
C Letter Number Substitution Logic Problem (part 2 coded solution)
Letter Number Substitution Logic Problem
Просмотров 7434 года назад
Letter Number Substitution Logic Problem
C++ Multiple Square Puzzle (3rd look with permutations)
Просмотров 704 года назад
C Multiple Square Puzzle (3rd look with permutations)
C++ Letter Count Puzzle (using functions)
Просмотров 2884 года назад
C Letter Count Puzzle (using functions)
C++ Cryptarithm (alphametic) Word Math Problem
Просмотров 7934 года назад
C Cryptarithm (alphametic) Word Math Problem
I am wanting to add 2 columns, is that possible?
Hi
Thanks professor!
how can I make it in philippines peso?
I am not sure, but try the following line substituted in the code from the first comment: Globalization.CultureInfo("en-PH")
Could u post the logisim files?
It has been a while since the class I was teaching this in. Sorry to say I have not been able to find the file.
Nice one. I found amazing videos on python and for the life of me i dont know why they dont increase their font size so people can read it better. Brilliant videos but the font size is just impossible to read for long periods. Yours is fine to read.
Thanks for clear explanation on handling python exceptions.
for Dev C++ just go to Tools -> Compiler options->Settings-> code generation options->language std->(here select ISO c++ 11) -> ok. Enjoy
Excuse me sir, I'm still a beginner and I'm still new to programming so thank you for your knowledge😅
Thank you sir
where i can find code for copy and paste ?
I connected the new version of mingw in the same way, but debugging programs in this new version does not start. The flag is to generate debugging information, I set it in the compiler settings, but debugging still does not work. Do you know how to solve this problem?
hello , where is the link
the rand name its giving error
not working
this is the only clear video that i have found on this lol thanks
Great explanation. Just started learning C++ after learning Python and honestly this is WILD to me.
fanks
👏👏
Thank you, this is part of our assignment and I was a bit lost at the middle and this video was right on target
with this type of Wordpad, is there any way to flip text into a mirror image?
My favorite writing software. xD Sucks it doesn't have pagebreaks, but you can just add your own with * * * or whatever symbol or letters you want.
Can you share this code right now? Plz
no me copien el codigo
te amo
Aptly its A amazing, Great job. SIR.
Thank you v much Sir Is a great Great job,
hi there, i was wondering if your services can assist me with decrypting a loader for call of duty?
Nice explanation
could you just have said nums[i] instead of nums[low] since low = i anyway?
int a=5; is still better IMO. The parentheses looks like a mangled function call and the curly braces looks like a bad block. Not a fan at all.
I tend to agree with you, but possibly because I am accustomed to the "old way". It does seem clearer.
The C++ core guidelines themselves recommend brace or as it is also called "uniform" initialization for exactly the reason that it does not allow implicit narrowing, and also you get a much more obvious view into what will be held in an initialized container e.g. with std::vector. Using = actually looks strange to me now, as another benefit of braces is to also clearly separate initialization of variables from assignment.
@@metal571 you are correct. It is also good that you are accustomed to the recommended way as it will become more common in the future ( in addition to being clearer). For myself, it will be a habit I will have to work to change.
what compiler did you use for this
The compiler was the default that came with Dev C++. I believe it was Mingw for this video, but it has been a while. TDM-GCC is another compiler option. Orwell Dev C++ also has an easy way to switch compilers with a drop down box (after they are configured).
Well it was helpful....but can we solve it in O(n) time?
well since you re doing it for each letter of the alphabet it'snot really O(n^2), it's 26*O(n), so for a big enough test with say, 10.000 characters this is O(n)
how can i make the zero not show as a positive nor a negative? please i need this
There is a video for neutral zero (not positive or negative) at ruclips.net/video/FdnGXoNHehk/видео.html
Write a program that asks the user for the hours worked for the week and the hourly rate. The basic salary is computed as: Basic salary = hours worked x hourly rate Bonuses are given by the following: No. of hours > 45 Bonus of 500 pesos No. of hours > 40 and <= 45 Bonus of 250 pesos No. of hours > 35 and <= 40 Bonus of 150 pesos Display the basic salary, bonus, and the gross salary (basic salary + bonus). Also compute the states income tax according to the following formula: Gross salary Tax deduction Below 8,000 pesos 3% of gross salary 8,001 to 15,000 pesos 5% of gross salary Above 15,000 pesos 8% of gross salary Display also the states income tax and the net income (gross salary minus tax deduction) of the employee.
you can reach me for any programming task
@@lanteicharles903 can you help me?
@@roichipineda6953 yes i can Contact me through my email
When writing the process of incrementation, can we also write it as "count++" or "count+=1" in a flowchart?
You've made this a lot easier for me. Big thanks to you
can you do it with predefined process?
Hi what will happen if we leave int x{}; braces empty? Will it by default initialize with zero?
Yes
Thank you
Hey I don't if you read this but for me this video help me get some idea however it's doesn't mean it's good So I hope you will continue your life and maybe make new video with better version
Draw flowchart to check entered number is 5 or not. Plzzz
Pretty much the same flowchart except the if condition will be (number = 5) instead of (number >= 0). Also the outputs would say "is five" and "is not five" instead of "is positive" and "is negative". Note some languages use double equal for comparison so (number == 5) could be used for the if condition.
Спасибо, братан! От души!
There is so many errors in me..i use dev c++ 5.11..and i copy sure codes.but it says error
Thank you!
Love you bro. Thanks for it. 🥰🥰😍
Thank you for your tutorial.. :)
my volume is turned ALL the way to 100 and I can't hear you
Thank you!
O(n^9) solution😍😍😍😍😍😍