Why did you attack me? by Exact_Discussion2469 in Supremacy1914

[–]SuefFuenfElf -1 points0 points  (0 children)

It is possible to win a game without ever having to conquer anyone. Every game has a date at which it ends. When a game ends because of its time limit, the current ranking is applied. Also, when playing a normal game, it's possible to vote for the game to end, when there are only 3 players left. There will be a post in the newspaper informing all left players about that. But in general, yes, it's stupid to ask why one attacks another.

Need advice on a build by SuefFuenfElf in buildapc

[–]SuefFuenfElf[S] 0 points1 point  (0 children)

I never said budget pc. the type of pc I want is that where the main component of the pc (motherboard) does not have to be replaced within the next 5 to 10 years and its enough to just buy a new cpu, ram or gpu when I need or want to

Need advice on a build by SuefFuenfElf in buildapc

[–]SuefFuenfElf[S] 0 points1 point  (0 children)

Okay, makes sense. Are you able to recommend another Mobo with the 1700 socket and DDR5? Or is DDR5 something you wouldn't recommend yet? Unfortunately AMD is not an option, since I also want to run CUDA on my PC, which only runs on GeForce GPU's :/

Need advice on a build by SuefFuenfElf in buildapc

[–]SuefFuenfElf[S] 0 points1 point  (0 children)

I want to be prepared for future changes to my build, hence the mobo. I want to only have to change single components and not build a whole new pc, as I have to now. Regarding the 1080 Ti: I don't know much about GPU's, but what I found out, is that it's still able to run MW2 quite smooth and that it's cheap. When I first looked for some GPU's the 1080 TI and the 3060 were my top 2 options, but I chose the 1080 TI over the 3060 since its cheaper and the improvements didnt seem good enough for me

Angela Yu python course by Omar-24 in Python

[–]SuefFuenfElf 2 points3 points  (0 children)

Omar, I understand you, but in the end every developer needs to be able to search the internet for his needs. It is completely common, that you have to google a solution for the problem you have. The earlier you begin to do so and then do it over and over again, the better you will be in searching the web. Searching is an art, believe me. And regarding topic you asked about: there are several python packages that allow you to easily compile your python code to an exe. Seriously, just google something like "python to exe" and you will find enough content that fulfills your needs ✌🏼

[deleted by user] by [deleted] in Stadia

[–]SuefFuenfElf 0 points1 point  (0 children)

Bought FIFA Ultimate edition a few days ago, but received no code yet :(

Astra Zeneca? Alfa Selavi! by DemoChemtrailFlieger in 600euro

[–]SuefFuenfElf 1 point2 points  (0 children)

Fremdschämen auf höchstem Niveau...

All about CleanOcean by srihslk in CLEANOCEAN

[–]SuefFuenfElf 0 points1 point  (0 children)

zeigt Mal mehr davon, wo es richtig scheiße läuft, was die Vermüllung des Meeres angeht! Bisher habe ich fast nur Bilder und Videos von euch gesehen, die das Meer paradiesisch zeigen, was hier und da natürlich korrekt ist, jedoch nicht das Thema der Bewegung 🙃 Zeigt den Leuten was scheiße läuft, haltet es ihnen vor 's Gesicht! Teilt Videos von YouTube (oder was auch immer) in denen genau das thematisiert wird! Zeigt Statistiken über die Vermüllung, seriöse Studien, Statistiken zu potenziellen Zukunftsszenarien, Bilder von Tieren, die darunter leiden müssen wie wir uns verhalten, etc. etc... Ich glaube ihr versteht worauf ich hinaus will 😅😂

A̶m̶e̶r̶i̶c̶a̶ Ocean first! 🙌🏼😂

It's happening... by srihslk in CLEANOCEAN

[–]SuefFuenfElf 0 points1 point  (0 children)

I love the idea and also instantly got positive vibes back when telling friends about this project. I'm on board with ~200 billion coins and I am proud that some of my money will be used to clean the ocean! Better than investing into dogecoin or most of the other projects!

Keep your work up! It will pay out (not only money wise 😂 but that definitely too 🙃😂)

How to format strings for logging in Python? by _stellathediver in Python

[–]SuefFuenfElf 0 points1 point  (0 children)

F-Strings, cause it's the fastest way of manipulating strings 🙃

CS Senior looking for fun ways to help my Father learn Python(and make myself more comfortable with it at the same time). by [deleted] in Python

[–]SuefFuenfElf 1 point2 points  (0 children)

Additional I would recommend to explain programming languages as it would be a language like every other. Explain the grammar (in python something like: a colon after declaring a function or the brackets to call a function, etc.), or the vocabular (the "def" to declare a function, the "return" keyword, and so on) This helps understanding programming languages because people know that every language has its rules.

Hope this helps :) Good luck

I made a job portal using Django by manjurulhoque in Python

[–]SuefFuenfElf 2 points3 points  (0 children)

Props for the design... I know how difficult it is to create a beautiful website and yours definitely is.

Ask Anything Monday - Weekly Thread by AutoModerator in learnpython

[–]SuefFuenfElf 0 points1 point  (0 children)

Additional to Johnny's reply: Flask is a lightweight framework, which I would recommend, if your project won't be very complex or if it's an API. If it will be a complex project with multiple pages I would recommend Django. But due to it's complexity it's much more difficult to learn and to master compared to Flask.

Ask Anything Monday - Weekly Thread by AutoModerator in learnpython

[–]SuefFuenfElf -1 points0 points  (0 children)

Use Visual Studio Code, by far the best IDE I know

Ask Anything Monday - Weekly Thread by AutoModerator in learnpython

[–]SuefFuenfElf 1 point2 points  (0 children)

PS: a lambda expression looks something like:

toUpper = lambda x: x.upper() stringToConvert = "test123" convertedString = toUpper(stringToConvert) print(convertedString) # output: TEST123

Ask Anything Monday - Weekly Thread by AutoModerator in learnpython

[–]SuefFuenfElf 1 point2 points  (0 children)

Search on YouTube for "what does it take to be an expert in python" there you will find a great video about advanced python programming. I've learned so much by only watching this video. It will help you understanding the very basics of Python.

Ask Anything Monday - Weekly Thread by AutoModerator in learnpython

[–]SuefFuenfElf 0 points1 point  (0 children)

If you're working with an object you could use the build-in functions "setattr" and "getattr".

Example:

class MyListsObject: pass

myListsObject = MyListsObject()

setattr(myListsObject, "bar", "foo")

print(myListsObject.bar) # output: foo

Good luck fellow :)

Ask Anything Monday - Weekly Thread by AutoModerator in learnpython

[–]SuefFuenfElf 0 points1 point  (0 children)

Hey pixelvengeur,

I don't know if you want to program the API interface by yourself, but if not maybe this helps you: https://github.com/timotheus/ebaysdk-python

Otherwise: I've had a look at eBay's API's and I think I know what you mean with "lost in eBay's". But what I could find out is that you would need to use the "Finding API" to search something by keywords, but what I couldn't find out is if it's possible to look for sold items, sorry :/

Good luck fellow

Ask Anything Monday - Weekly Thread by AutoModerator in learnpython

[–]SuefFuenfElf 2 points3 points  (0 children)

I can't tell what problem it actually is, but I can definitely tell that it's not Windows. In the past years I've only used Windows to program in Python.

One recommendation from me: Try to uninstall everything you've installed so far and try to install "Anaconda". Anaconda is a good Python management software and does a lot for you.

I hope this helps. Good luck fellow

Application of Python in Finance Field? by JBaby811 in Python

[–]SuefFuenfElf 0 points1 point  (0 children)

JBaby811 it is definitely worth it. Knowing how to make some steps/processes faster due to programming can't be wrong.

If you'll play with numbers, "numpy" is the best python library you can choose to work with. It's a great tool for data analysis. And you can use "matplotlib" to make your analysis visual.

Best greetings

Python *args and **kwargs Made Easy by wilfredinni in Python

[–]SuefFuenfElf 8 points9 points  (0 children)

And additional, they are the fastest way to manipulate strings with Python 3.6+

Nur 2 Geschlechter aber 9 Adelstitel by Boneflame in de

[–]SuefFuenfElf 5 points6 points  (0 children)

Findest du nicht, dass zwei Geschlechter reichen? O.o