- 129
- 680 677
RealLifeEd
United States
Приєднався 23 лют 2015
Education tools and tricks for software and other various topics. Topics include 3Ds Max, GameMaker, Unity and Photoshop.
Python checking user input for correct value, word or number
Using while, try and functions to test the input of a user in order to make sure the value is what the program needs. In this example, we check for a value of one or two and disallow anything other than a number or words that equal these.
Переглядів: 1 070
Відео
How to use slice in Python on Tuples or Strings
Переглядів 202Рік тому
In this video, we use the slice() function to separate tuples and/or strings. We see how we can set the start slice, end slice, and the specific steps of the slice.
How to concatenate strings and integers / printing strings and ints
Переглядів 556Рік тому
In this tutorial, we will look at how to concatenate or combine strings and integers to print messages which contain both. We also will explore different ways to do this so that you can still use math functions with your variables.
How to create a health bar or inventory status bar in a Python text based game
Переглядів 1,9 тис.2 роки тому
In this tutorial, we look at how to create a health bar using chr() and variables. We will create a function that can be called throughout the text-based game and can update as the player's health changes. This can also be used for inventory amounts and other counter types. Link to chr() codes for Python - python-tcod.readthedocs.io/en/latest/tcod/charmap-reference.html
How to do date and time calculations in Python
Переглядів 1502 роки тому
How to use complete calculations with dates and times. Python Programming Beginners series. In this video: - Current date calculations - Current time calculations Tools: The Python Standard Library - docs.python.org/3/library/ Replit - replit.com/ #python2DArray #pythonlists #learningtoprogram #learntocode #programmingtutorials #pythonvariables #pythonloops #pythondate #pythontime
Python: Display date and time including local time zones
Переглядів 2802 роки тому
How to use display date and time. Python Programming Beginners series. In this video: - Current date - Current time - Time zones Tools: The Python Standard Library - docs.python.org/3/library/ Replit - replit.com/ #python2DArray #pythonlists #learningtoprogram #learntocode #programmingtutorials #pythonvariables #pythonloops #pythondate #pythontime
How to write to and append files using Python
Переглядів 6202 роки тому
How to write and append files using Python In this video: - Python files - writing to files - appending files Tools: The Python Standard Library - docs.python.org/3/library/ Replit - replit.com/ #python2DArray #pythonlists #learningtoprogram #learntocode #programmingtutorials #pythonvariables #pythonloops
Python files readline, strip() and using while loops while reading files
Переглядів 4,9 тис.2 роки тому
How to read text files and while loops to parse through the files. In this video: - Python accessing and reading text files - Assign each line to a variable - Strip() - Upper() File used in this video - drive.google.com/file/d/1PoLRAreB7CE-0FYR_2jMHS5h012kOYjx/view?usp=share_link Tools: The Python Standard Library - docs.python.org/3/library/ Replit - replit.com/ #python2DArray #pythonlists #le...
How to assign lines in file to arrays and the ord() function / Unicode characters
Переглядів 3062 роки тому
How to read text files and assign them to arrays using Replit and Python. We also introduce the ord() function. In this video: - Python accessing and reading text files - Assign each line to an array - Filtering the lines based on a character - ord() function and what are Unicode characters Tools: The Python Standard Library - docs.python.org/3/library/ Replit - replit.com/ #python2DArray #pyth...
Python Make and Read Text Files
Переглядів 1,1 тис.2 роки тому
How to make and read text files using Replit and Python. In this video: - Python accessing and reading text files - parse through text files Tools: The Python Standard Library - docs.python.org/3/library/ Replit - replit.com/ #python2DArray #pythonlists #learningtoprogram #learntocode #programmingtutorials #pythonvariables #pythonloops
Python Arrays Remove, Pop, Del
Переглядів 1,8 тис.2 роки тому
How to remove, pop, and del from arrays. Python Programming Beginners series. In this video: - Arrays - Removing from arrays - Del from arrays - Pop arrays Tools: The Python Standard Library - docs.python.org/3/library/ Replit - replit.com/ #python2DArray #pythonlists #learningtoprogram #learntocode #programmingtutorials #pythonvariables #pythonloops
Python 2D arrays and lists
Переглядів 28 тис.2 роки тому
How to use 2D Arrays and Lists. Python Programming Beginners series. In this video: - 2D Arrays - 2D Lists Tools: The Python Standard Library - docs.python.org/3/library/ Replit - replit.com/ #python2DArray #pythonlists #learningtoprogram #learntocode #programmingtutorials #pythonvariables #pythonloops
Python Programming: How to use while loops, break and continue
Переглядів 7672 роки тому
How to use while loops and how to break out of them. In this video: - While loops - Break in while loops - Continue in while loops Tools: The Python Standard Library - docs.python.org/3/library/ Replit - replit.com/ #pythonwhileloops #pythonbreak #pythoncontinue #pythontutorial #learningtoprogram #learntocode #programmingtutorials #pythonvariables #pythonloops
Python Programming more on lists and how to use them.
Переглядів 1672 роки тому
How to use lists part 2. In this video we cover append, insert, remove, clear, pop, range, count, sort, reverse and copy In this video: - list append - list insert - list remove - list clear - list pop - list count - list sort - list reverse - list copy Tools: The Python Standard Library - docs.python.org/3/library/ Replit - replit.com/ #pythonlists #append #insertlist #listpop #pythontutorial ...
How to make a GUI in Python using Tkinter including textbox, buttons and graphics.
Переглядів 7992 роки тому
How to make a GUI in Python using Tkinter including textbox, buttons and graphics.
Python Programming Tutorial: How to use loops and lists for beginners
Переглядів 1372 роки тому
Python Programming Tutorial: How to use loops and lists for beginners
Python Programming: STOP DOING THIS! fstring, is easier and you will have less errors in your code!
Переглядів 1842 роки тому
Python Programming: STOP DOING THIS! fstring, is easier and you will have less errors in your code!
Python Programming How to use if, elif, else and logical operators for beginners
Переглядів 3432 роки тому
Python Programming How to use if, elif, else and logical operators for beginners
Python Programming How to use booleans and using booleans in functions
Переглядів 4772 роки тому
Python Programming How to use booleans and using booleans in functions
Python Programming How to Make Your Own Modules and Use Existing ones Beginners Lesson 8
Переглядів 3402 роки тому
Python Programming How to Make Your Own Modules and Use Existing ones Beginners Lesson 8
Python Programming String Methods How To Manipulate Text Lesson 7
Переглядів 1702 роки тому
Python Programming String Methods How To Manipulate Text Lesson 7
Python Programming Arithmetic, Comparison, Logic and Assignment Operators Beginners Lesson 6
Переглядів 2952 роки тому
Python Programming Arithmetic, Comparison, Logic and Assignment Operators Beginners Lesson 6
Python Programming Global Variables & Casting Beginners Tutorial Lesson 5
Переглядів 2862 роки тому
Python Programming Global Variables & Casting Beginners Tutorial Lesson 5
Python How to Use Functions & Passing Data To Functions | Lesson 5
Переглядів 2482 роки тому
Python How to Use Functions & Passing Data To Functions | Lesson 5
Python Programming How to use Concatenation | Combining Strings | Lesson 4
Переглядів 4132 роки тому
Python Programming How to use Concatenation | Combining Strings | Lesson 4
Python Programming Errors and Exceptions | Lesson 3
Переглядів 4222 роки тому
Python Programming Errors and Exceptions | Lesson 3
Python Programming Beginners Tutorial | Lesson 2 | Variables Data Types Object-Oriented Language
Переглядів 6522 роки тому
Python Programming Beginners Tutorial | Lesson 2 | Variables Data Types Object-Oriented Language
Python Programming Beginners Tutorial | Lesson 1 | Print Strings
Переглядів 8502 роки тому
Python Programming Beginners Tutorial | Lesson 1 | Print Strings
Java Programming For Beginners / Lesson 2 / Print Output / system.out.print & println
Переглядів 392 роки тому
Java Programming For Beginners / Lesson 2 / Print Output / system.out.print & println
Java Programming For Beginners / Your first program / Lesson 1
Переглядів 382 роки тому
Java Programming For Beginners / Your first program / Lesson 1
Be aware that initialization done at 7:30 is incorrect. If you were to set num[0][1] = 1, then all of the columns will get set to 1. Instead, use an iterator, num=[[0] * cols] for _ in range(rows)]
Thank you!
thank u so much
thanks for the tutorial man keep uploadin
THANKSS !
very good
i really appreciate what you did here. :0
Hi. Is there a way you can set the output file names automatically, like render001.jpg, render002.jpg, render003.jpg, so you don't have to type each file name manually?
4:25 When you used the loop, you started printing "plane" from the second line not the first. Your output should've started with "Cub Special" but instead it started with "Archer." How would you fix this? Edit: Unless I'm just dumb...
You're absolutely , thanks for pointing that out. To correct this, I should have removed the "plane = airplanes.readline()" above the while statement.
couldnt find the linking long and slow
thakns brou <3
Thank you I am an Expert in 3dmax I was forgetting the pivot place, you helped me finish my work with your small sweet video hope you get good Luck
Glad I could help!
thank you so many where cofusing me this is simple and easy
my guy couldve just used instance destroy other
my object just floats away
Good vid, nice and clear
Im coming from 2021 and wana say thank you for this tutorial Just realized for smooth animation you need at least 300 frametimes for 10 seconds or 8 hours for 1 minutes video This is torture
Can you use Hi Solver on this or just bones?
Thanks.!
Just what I searching!! Thanks for tutoral ,bro! Nice work..
thank you so much !
Thanks! This was really useful for developing my game.
Thank you so must
good tips, thank you
Thank you so much.. all i wanted found in single video only in 8 min... thanks you so much again......
Most welcome 😊
Cảm ơn bạn rất nhiều, nhờ bạn mà mình mới làm được Cảm ơn
thanks for the video.. Its helpful for me.
Glad it helped
Thank you <3
What's with the black and white stuff in the top left corner of the tileset?
thank you
Really good very helpful tutorial
huh no ones here
Thank you! Your explanations were so clear and concise!
Thank you for the video man, Hope everything goes well 👍 thumbs up
THANK YOU! I really glad, that i found this video
hi this video was quite helpful
Really useful! I was actually looking for stuff about coding with tile sets, but this has inspired me to take things a few steps further!
really thanks for the video, it's very helpful
I'm glad it helped!
Thanks I'll try it !
Nice
thank you, works for 3ds Max 2020 as well
how would you change the path for the same object when it's in a different room?
Can you delete the lines after you "terrain" them?
I think it's dependant on the options in "pick operand"
thanks
Answer 1:39 THANKS @RealLifeEd
Anyway I can have my GMS:1.4 to not convert my DnD to Code in GMS:2 when I transport it over?
Thank you for the detailed tutorial!
Thanks!
thank you so muchh! this is really helpful. Please make other cell organelles tutorial please =D
You are such a talented teacher and you do not have millions of likes!