this is my sweet baby boy cumslut.png. Q: what makes cumslut.png special?
A: he is the first png i even made in python with modular arithmetic :D :D :D
(learning python tonight. my hello world was half an hour ago. am a little bit stoned)
Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
✓ Live Streaming✓ Interactive Chat✓ Private Shows✓ HD Quality
Anya is LIVE right now
FREE
Free to watch • No registration required • HD streaming
Kieli jotka tarvitsen opiskella on Python, mutta eiiiiiiiiii, kieli jotka haluan opiskella on suomi... molemmat ovat hyviä, mutta työni on tietokonet ja en asu Suomessa, joten mikä on tärkeämpi (vastaus on opiskella suomea, minulle)
Luulen, että tää on koska suomi on minulle vaikeaa, mutta Python on minulle todella helppoa, joten suomi on kiinnostavampi kuin Python. Kun opiskelen Python se on tylsää, mutta suomi on vaativaa. Myös, opin Python ennen ja se on minulle vanha, mutta suomi on minulle uusi. Joten tää on syy miks pidän suomi parempi kuin Python.
I'll try to remember to include dates from now on - it seems more efficient <33
What I did on this beautiful Sunday?
- Biochem lecture 6 out of 25
- added another reference to my Bachelors thesis (hopefully it was the last one - and it is finally done 100%)
- French Duolingo
- did some small exercises on loops in Python
- downloaded Blender! To do some fun stuff - I need to figure it all out because it seems a bit complicated but hopefully I'll get the hang of it pretty quickly
- had an English tutoring session with a student in the morning
Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
✓ Live Streaming✓ Interactive Chat✓ Private Shows✓ HD Quality
Anya is LIVE right now
FREE
Free to watch • No registration required • HD streaming
Hi guys, as many of you may be aware of I, once upon a time, had a sort of series on this blog related to the mathematical olympiad (of my country) where I kept a record of my preparation and eventual examination and advised here and there about ways to proceed based on personal experience. ( you can check it out here! )
What you may not know is that I've been continuously postponing learning to code, specifically in python, for a bit over a year now. Recently, I got the chance to join a Web Scraping Project related to current politics. I decided I would love to keep a record of that experience too, so here is the first part:
Part I: Learning Python
Since I enrolled in a relatively recent project made by very hard-working students, I'm not going to expose the preparation they encouraged. What I am going to do is divide what I learned into different phases and link possible resources below:
Phase I: Basic info, variables, data types and lists.
Intro - Version of Python (use 3.9+), the process of installing and available guide on their website. To use Python, you can use your computer's command prompt, but for proper code, I use VSCode some use Sublime or even PyCharm. There are various options available but, I generally encourage Visual Studio Code.
General awareness of the various functionalities of Python - from data storage to calculators - Try some basic exercises like making a, as previously mentioned, calculator. To truly learn coding, I think practice and fun is very important - so just mess around a bit. Try doing some calculations first or even using variables without really knowing what they are.
Variables - Learn to assign variables to various values, and that by using print() you are able to see them in the shell/terminal.
Data Types - Learn that there are different types of objects (everything is an object in python!!), such as
booleans - which are True and False, they’re really useful especially when comparing data,
strings - essentially it’s text, to introduce them you have to use single ( ’ ’ ) or double ( “ “ ) quotes,
integers and floats - both are numerical values, the difference being that floats have decimals aka floating-points ;)
Inside variables you can insert any of these values and to discover the type of a variable, let’s say A, simply insert print(type(A)) into your code and it will output in the terminal. If it’s a boolean, the output will be “bool”, if it’s a string it’ll be “str”, if it’s an integer it’ll be int and if it’s a float it’ll be float.
You can also convert data types into others, for example:
age = 1
print ( “I am” + age ) will create an error - because, although you can add strings (do try!) and add integers with themselves [check the difference between 1 + 1 and “Maria” + “Maria” \ “Maria” * 2 (you can multiply strings! If you think about it, it makes sense)], you cannot add or subtract a number from a string.
To make the code run you’ll need to do the following:
print( “I am” + str(age)) - Therefore converting the interger into a string!
Lists - Learn that a list is another data type and it is very useful to store values (by using square brackets [ ] ) A single list can contain sublists and various data types, there can be integers and strings in the same list. Learn to use those lists (subsetting lists (index based and different ways to present it), list slicing, manipulating lists (by adding, deleting and chaging values (index is useful)), etc.)
Part I; general info: In Pyhton ( ; ) is used to put different commands in the same line:
command1 ; command2
=
command1
command2
----
Resources:
Google’s Python Class - The teacher is very good, from what I saw. Proper lectures are available (an hour or so) and exercises are provided. Everything is very organized and clear. Good for a relatively in-depth knowledge of Python.
DataCamp - Great balance between theory and practice, heavily advise. Videos are considerably short, it’s possible to end phase I in less than an hour. Good for initial and superficial knowledge of Python. Tried it and loved it!
Microsoft’s Intro to Python - The literal definition of short and sweet, 8 units and 16 minutes of learning. Good first contact with the programming language.
Udemy courses - Check for free ones, there are various to choose from. If there’s a reasonable amount of options, which I believe there is, I heavily advise choosing the one more heavily catered to practice. I linked one I found and had good reviews but please research some more and see what fits your learning style.
One of the most difficult tasks for me when it comes to learn a new techonology is getting used to the syntax and start to properly use it. It’s even worst when it comes to documentation, it’s quite complex for me and I find it easier to just get my hands dirty and start doing stuff (and read the concepts involved). Also I recently found there are some book series that help me get through this process: the Head First series. I’m enjoying this reading and I think after reading the specific book from this series, I’ll be able to get a better understanding of the whole technology.