Python Advanced Tutorial 2 - Templates

preview_player
Показать описание
This is a tutorial covering what, how and why to use templates in python. All Links and Slides will be in the description. Subscribe for more cool stuff!

If you like what you see be sure to subscribe and thumbs up!
Рекомендации по теме
Комментарии
Автор

Great stuff, wasn't aware of the Template class before.

cyberfiles
Автор

Thanks for this kind of tutorials, so I learn more about new unknown tools and modules! Oh one little tipp for your print strings, the format-method is pretty nice ;)
Insteat of:
"print("The price of", item, "is", price, "$." )"
You can write:
"print("The price of {0} is {1}$.".format(item, price))"
Since I knew about format I tend to use it nearly in every print statement ;) Maybe you like it too.

Pterryreal
Автор

Thank you for this playlist, it's really helping me understand concepts in the book Violent Python. 

departmentofeducation
Автор

Can you pls use python 3.4??? 
i use it and some stuff isn't working in this python 2 tutorial

rishidesai
Автор

Thank you for a great tutorial. Good to see someone cover the more advanced aspects of python as well. 
 

jansundfjord
Автор

This video is a proof that why developers are not human beings...

vrowmuria
Автор

What's the difference between Templates and the string.format method?

Which one is better?

FaizKhanDragon
Автор

please change the colour, or use some other editor as the words are not visible.

vidhiagarwal
Автор

Good.Please increase font while typing program, It is more visible to people!

SivaMulagala
Автор

can you make your python tutorials on windows os?

keemomoseley
Автор

Are you writhing the codes in cmd (command Promp)

abdulwaseer
Автор

Is this the template method design pattern?

thebuzz
Автор

Thanks for this playlist . .. :) . just a favor.. can you post tutorials about python with API?

monchatayde
Автор

My stutter is super obvious in this video... sigh

DrapsTV
Автор

I want to learn the applications of Python in infosec. Please suggest some reliable resources. 
DrapsTV thanks for this playlist...

mjrox
Автор

It'd be nice to know about python pickling (serialization), always confuses me ._.

TheBeanhacker
Автор

How can I multiple the price with the quantity?

Avoidious
Автор

dude... great tutorial.. but please zoom in a little..! damn..!

anomalydheryn
Автор

1) print need parentheses to work
2) 'Template' object has no attribute 'substitude' ...

ChasseurCwalk
Автор

Do you know about format function? 'str' + 'str' is very bad practice. All what you need is ' bla {0} bla {1}'.format(var1, var2). Also you can add some autocomplete and autopep8 addons in your vim, it will be more faster.
Everything else is great, thank you

MrCradleman
visit shbcf.ru