Data Science and Data Proicessing

PYTHON PROGRAMMING

10 Crazy Cool Project Ideas for Python Developers

Crazy project ideas to challenge your Python skills

Image for post
Photo by Simon Abrams on Unsplash

Did you know Python is known as an all-rounder programming language?

Yes, it is, though it shouldn’t be used on every single project,

You can use it to create desktop applications, games, mobile apps, websites, and system software. It is even the most suitable language for the implementation of Artificial Intelligence and Machine Learning algorithms.

So, I spent the last few weeks collecting unique project ideas for Python developers. These project ideas will hopefully bring back your interest in this amazing language. The best part is that you can enhance your Python programming skills with these fun but challenging projects.

Let’s have a look at them one-by-one.

1- Create a Software GUI Using Voice Commands

Image for post
Interaction Sample — Original Photo by Headway on Unsplash — Edited by the Author

These days, massive progress has been made in the field of desktop application development. You will see many drag & drop GUI builders and speech recognition libraries. So, why not join them together and create a user interface by talking with the computer?

This is purely a new concept and after some research, I found that no one has ever attempted to do it. So, it might be a little bit more challenging than the ones mentioned below.

Here are some instructions to get started on this project using Python. First of all, you need these packages:-

Now, the idea is to hardcode some speech commands like:

Image for post

You got the point, right? It’s very simple and straightforward to add more commands like these.

As this is going to be a Minimum Viable Product (MVP). So, it will be completely ok if you have to hardcode many conditional statements (e.g. if…else).

After setting up some basic commands, it’s time to test the code. For now, you can try to build a very basic login form in a window.

The major flexibility of this idea is that it can be implemented for game development, websites, and mobile apps. Even in different programming languages.

2- AI Betting Bot

Image for post
Tennis Match — Photo by Moises Alex on Unsplash

Betting is an activity where people predict an outcome and if they are right then they receive a reward in return. Now, there are many technological advances that happened in Artificial Intelligence or Machine Learning in the past few years.

For example, you might have heard about programs like AlphaGo Master , AlphaGo Zero , and AlphaZero that can play Go (game) better than any professional human player. You can even get the source code of a similar program called Leela Zero.

The point I want to convey is that AI is getting smarter than us. Meaning that it can predict something better by taking into account all the possibilities and learn from past experiences.

Let’s apply some supervised learning concepts in Python to create an AI Betting Bot. Here are some libraries you need to get started.

At first, you need to select a game (e.g. tennis, football, etc.) for predicting the results. Now search for historical match results data that can be used to train the model.

For example, the data of tennis matches can be downloaded in .csv format from tennis-data.co.uk website .

In case you are not familiar with betting, here’s how it works.

  • You want to bet $10 on Roger Federer with an odd of 1.3.
  • If he wins, you will receive $10 (actual amount), plus $3 (profit).
  • If he loses, you will lose your money (e.g. $10) too.

After training the model, we have to compute the Confidence Level for each prediction, find out the performance of our bot by checking how many times the prediction was right, and finally also keep an eye on Return On Investment (ROI).

Download a similar open-source AI Betting Bot Project by Edouard Thomas.

3- Trading Bot

Image for post
Trading — Photo by Nick Chong on Unsplash

Trading Bot is very similar to the previous project because it also requires AI for prediction.

Now the question is whether an AI can correctly predict the fluctuation of stock prices?

And, the answer is Yes.

Before getting started, we need some data to develop a trading bot.

These resources from Investopedia might help in training the bot.

After reading both of these articles, you will now have a better understanding of when to buy stocks and when not. This knowledge can easily be transformed into a Python program that automatically makes the decision for us.

You can also take reference from this open-source trading bot called freqtrade . It is built using Python and implements several machine learning algorithms.

4- Iron Man Jarvis (AI based Virtual Assistant)

Image for post
AI Assistant Interface — Photo by Joshua Sortino on Unsplash

This idea is taken from the Hollywood movie series Iron Man. The movie revolves around technology, robots, and AI.

Here, the Iron Man has built a virtual assistant for himself using artificial intelligence. The program is known as Jarvis that helps Iron Man in everyday tasks.

Iron Man gives instructions to Jarvis using simple English language and Jarvis responds in English too. It means that our program will need speech recognition as well as text-to-speech functionalities.

I would recommend using these libraries:

For now, you can hardcode the speech commands like:

You can also use Jarvis for tons of other tasks like:

  • Set alarm on mobile.
  • Continuously check the home security camera and inform in case someone is waiting outside. You can add more features like face detection and recognition. It helps you find out who or how many people are there.
  • Open/Close room windows.
  • Turn on/off lights.
  • Automatically respond to emails.
  • Schedule tasks.

Even the founder of Facebook, “Mark Zuckerberg” has built a Jarvis as a side-project.

5- Monitor a Website to Get Informed About an Upcoming Concert of Artist

Image for post
Tickets — Photo by Andy Li on Unsplash

Songkick is a very popular service that provides information about upcoming concerts. Its API can be used to search for upcoming concerts by:

  • Artist
  • Location
  • Venue
  • Date and Time

You can create a Python script that keeps checking a specific concert daily using Songkick’s API. At last, send an email to yourself whenever the concert is available.

Sometimes Songkick even displays buy tickets link on their website. But, this link could go to a different website for different concerts. It means that it is very difficult to automatically purchase tickets even if we make use of web scraping.

Rather, we can simply display the buy tickets link as it is in our application for manual action.

6- Automatically Renew Free Let’s Encrypt SSL Certificates

Image for post
Let’s Encrypt Logo — https://letsencrypt.org/

Let’s Encrypt is a certificate authority that offers free SSL certificates. But, the issue is that this certificate is only valid for 90 days. After 90 days, you have to renew it.

In my opinion, this is a great scenario for automation using Python. We can write some code that automatically renews a website SSL certificate before expiring.

Check out this code on GitHub for inspiration.

7- Recognize Individuals in Crowd

Image for post
Face Recognition — Image by the Author

These days, governments had installed surveillance cameras in public places to increase the security of their citizens. Most of these cameras are merely to record video and then the forensic experts have to manually recognize or trace the individual.

What if we create a Python program that recognizes each person in camera in real-time. First of all, we need access to a national ID card database, which we probably don’t have.

So, an easy option is to create a database with your family members’ records.

You can then use a Face Recognition library and connect it with the output of the camera.

8- Contact Tracing

Image for post
Contact Tracing App — Photo by Markus Winkler on Unsplash

Contact Tracing is a way to identify all those people that come into contact with each other during a specific time period. It is mostly useful in a pandemic like COVID-19 or HIV. Because without any data about who is infected we can’t stop its spread.

Python can be used with a machine learning algorithm called DBSCAN (Density-Based Spatial Clustering of Applications with Noise) for contact tracing.

As this is just a side-project, so we don’t have access to any official data. For now, it is better to generate some realistic test data using Mockaroo.

You may have a look at this article for specific code implementation.

9- Automatically Move Files From One Folder to Another

Image for post
Nautilus File Manager in Ubuntu — Image by the Author

This is a very basic Python program that keeps monitoring a folder. Whenever a file is added in that folder it checks its type and moves it to a specific folder accordingly.

For example, we can track our downloads folder. Now, when a new file is downloaded, then it will automatically be moved in another folder according to its type.

.exe files are most probably software setups, so move them inside the “software” folder. Whereas, moving images (png, jpg, gif) inside the “images” folder.

This way we can organize different types of files for quick access.

10- Gather Career Path Videos From YouTube

Image for post
YouTube Homepage — Photo by Kon Karampelas on Unsplash

Create an application that accepts the names of skills that we need to learn for a career.

For example, to become a web developer, we need to learn:

  • HTML5
  • CSS3
  • JavaScript
  • Backend language (PHP, Node.js, Python, ASP.NET, or Java)
  • Bootstrap 4
  • WordPress
  • Backend Framework (Laravel, Codeigniter, Django, Flask, etc.)
  • etc.

After entering the skills, there will be a “Generate Career Path” button. It instructs our program to search YouTube and select relevant videos/playlists according to each skill. In case there are many similar videos for skill then it will select the one with the most views, comments, likes, etc.

The program then groups these videos according to skills and display their thumbnail, title, and link in the GUI.

It will also analyze the duration of each video, aggregate them, and then inform us about how much time it will take to learn this career path.

Now, as a user, we can watch these videos which are ordered in a step by step manner to become a master in this career.

Conclusion

Challenging yourself with unique programming projects keeps you active, enhance your skills, and helps you explore new possibilities.

Some of the project ideas I mentioned above can also be used as your Final Year Project.

It’s time to show your creativity with Python programming language and turn these ideas into something you will proud of.

Thanks for reading!

Rank Game Publisher
1 리니지2M NCSOFT
2 리니지M NCSOFT
3 Genshin Impact miHoYo Limited
4 바람의나라: 연 NEXON Company
5 기적의 검 4399 KOREA
6 R2M Webzen Inc.
7 V4 NEXON Company
8 KartRider Rush+ NEXON Company
9 리니지2 레볼루션 Netmarble
10 뮤 아크엔젤 Webzen Inc.
11 S.O.S:스테이트 오브 서바이벌 KingsGroup Holdings
12 라이즈 오브 킹덤즈 LilithGames
13 블레이드&소울 레볼루션 Netmarble
14 A3: 스틸얼라이브 Netmarble
15 가디언 테일즈 Kakao Games Corp.
16 AFK 아레나 LilithGames
17 그랑삼국 YOUZU(SINGAPORE)PTE.LTD.
18 용비불패M NHN Corp.
19 Cookie Run: OvenBreak - Endless Running Platformer Devsisters Corporation
20 PUBG MOBILE PUBG CORPORATION
21 Roblox Roblox Corporation
22 Lords Mobile: Kingdom Wars IGG.COM
23 라루나 판타지 Eskyfun Entertainment
24 Age of Z Origins Camel Games Limited
25 스테리테일 4399 KOREA
26 라그나로크 오리진 GRAVITY Co., Ltd.
27 Empires & Puzzles: Epic Match 3 Small Giant Games
28 FIFA ONLINE 4 M by EA SPORTS™ NEXON Company
29 슬램덩크 DeNA HONG KONG LIMITED
30 Epic Seven Smilegate Megaport
31 Brawl Stars Supercell
32 FIFA Mobile NEXON Company
33 Gardenscapes Playrix
34 일루전 커넥트 ChangYou
35 황제라 칭하라 Clicktouch Co., Ltd.
36 Rise of Empires: Ice and Fire Long Tech Network Limited
37 Homescapes Playrix
38 메이플스토리M NEXON Company
39 Pmang Poker : Casino Royal NEOWIZ corp
40 페이트/그랜드 오더 Netmarble
41 검은사막 모바일 PEARL ABYSS
42 마구마구 2020 Netmarble
43 한게임 포커 NHN BIGFOOT
44 Summoners War Com2uS
45 Pokémon GO Niantic, Inc.
46 Random Dice: PvP Defense 111%
47 컴투스프로야구2020 Com2uS
48 에오스 레드 BluePotion Games
49 달빛조각사 Kakao Games Corp.
50 킹덤 : 전쟁의 불씨 파우게임즈

7 가지 멋진 명령 줄 도구

익숙한 도구와 아직 시도하지 않은 도구

8 월 24 일 · 6최소 읽기
Image for post
~의 사진맥스웰 넬슨의 위에Unsplash.

터미널 / 명령 줄은 개발자가 벨트 아래에있는 신성한 도구입니다. 프로그래머에게 가장 많이 사용되는 도구입니다. 나는 그것이 얼마나 가볍고 당신이 그것으로 할 수있는 믿을 수없는 양 때문이라고 믿는다. 일부 개발자는 터미널 내부에서 모든 작업을 수행하기 위해 추가 작업을 수행하기도합니다. 그들에 대한 명성.

개인적으로 훌륭하다고 생각하고 매일 거의 사용하는 CLI (Command-Line Interface) 도구를 몇 가지 보여 드리겠습니다. 물론, 명령 줄을위한 도구가 너무 많아이 목록이 표면을 거의 긁지 않습니다.

1. 정력

포함되지 않는 터미널 목록의 종류정력? 여부에 대한 수많은 논쟁이 있습니다.정력이다그만큼 프로그래밍을위한 편집자이거나 미치광이를 위해 고안된 도구라면 여기에서 논의하지 않겠습니다.

익숙하지 않은 분들을 위해정력, 기본적으로 향상되는 텍스트 편집기입니다.vi모든 UNIX 시스템과 함께 제공되는 도구입니다. 터미널을 통해 파일을 편집하거나 만들 수 있습니다.

Image for post
vim의 기본 사용법.

이 도구는 터미널에있는 동안 신속하게 파일을 편집하고 IDE 또는 VSCode 또는 Sublime Text와 같은 GUI 텍스트 편집기를 열지 않으려는 경우에 유용합니다.

많은 단축키가 현대의 텍스트 편집기만큼 직관적이지 않기 때문에이 도구는 처음 학습 할 때 사용하기가 조금 까다로울 수 있습니다. 그러나 학습에 시간을 투자한다면정력, 개발자에게 매우 강력 할 수 있습니다. 이는 이유정력거대한 커뮤니티가 있습니다. 이 커뮤니티는 규모가 너무 커서 개발자가 인기있는 IDE 및 텍스트 편집 기용 플러그인을 만들어정력경험.

2. vtop

상단시스템이 실행중인 프로세스에 대한 정보와 시스템의 메모리 및 CPU 사용량에 대한 일반 정보를 표시하기 위해 터미널 내에서 사용되는 매우 일반적인 명령입니다. 사용한 적이 있다면상단,보기에는 약간 혼란 스러울 수 있습니다. 그렇다면이 정보를 좀 더 쉽게 처리 할 수있는 방법은 무엇입니까? 소개vtop, 구현상단그래프가 있습니다!

Image for post
행동하는 vtop.

나는 모든 것에 대한 시각적 가이드가 있고상단정보는 살인자입니다. 시스템 부하를 주시 할 수 있도록 하루 종일이 작업을 실행합니다.

당신은 필요합니다npm이 도구를 위해.

3. fzf

다음은 정말 멋진 도구입니다. 라고 불린다fzf. 입력 한 내용에 따라 파일을 찾을 수있는 범용 명령 줄 퍼지 파인더입니다. 그 자체로는 OK 도구입니다. 현재 디렉토리에있는 모든 다른 파일을 나열합니다. Spotlight 검색이라고 생각할 수 있지만 터미널에 있습니다.

Image for post
내 집에서 퍼지 찾기.

이제이 도구의 진정한 힘은fzf같은 다른 기존 명령과 함께죽임또는고양이. 이렇게하려면 패키지와 함께 제공되거나 저장소 내부에서 제공되는 설치 스크립트를 실행해야합니다.

/usr/local/opt/fzf/installor~/.fzf/install

터미널을 다시 시작하거나출처너의.bashrc. 몇 가지 질문을하고 모든 질문에 답하면 잠금이 해제됩니다.fzf의 최대 잠재력.

이제 다음과 같은 명령을 실행할 수 있습니다.

cat **[TAB]
vim **[TAB]
ssh **[TAB]

fzf다음 명령으로 작동 할 수있는 가능한 모든 항목을 찾습니다.

Image for post
IDE를 찾는 파일과 유사합니다.

이것의 또 다른 멋진 응용 프로그램은죽임명령. 이것은 아마도 내가 가장 많이 사용하는 것입니다. 타이핑의 시대ps -ef | grep [프로세스 이름]죽일 프로세스 ID를 수동으로 입력하거나 복사하는 것은 오래 전부터 사라졌습니다. 대신 실행할 수 있습니다.죽이기 [탭]또는kill -9 [탭]. 죽이려는 프로세스를 퍼지 찾고 Enter를 누르십시오. 프로세스 ID가 자동으로 채워집니다.

Image for post
멋진 사용 사례.

제가 살펴볼 수있는 다른 사용 사례가 많이 있지만 이것이 제가 지적하고 싶은 주요 사용 사례입니다.

4. 쓰레기 CLI

이제까지rm -rf영구적으로 삭제하고 싶은 것이 아님을 즉시 깨달으셨습니까? 나는 이것이 나만이 아니기를 바랍니다. 그런 종류의 불안감에 대처하고 싶지 않다면쓰레기 CLI.

이 도구는 기본적으로 항목을 존재에서 완전히 지우는 대신 시스템의 휴지통에 넣습니다.

Image for post
파일을 망각 대신 휴지통으로 이동합니다.

입력하는 대신폐물, 내 별칭이 있습니다..bashrc그 대체rm명령:

alias rm=trash

이제 무언가를 사용하여 삭제하면rm, 영원히 사라지는 것에 대해 걱정할 필요가 없습니다. 원하는 경우 휴지통에서 간단히 검색 할 수 있습니다. 그리고 예, 이것은 다른 플래그와 함께 작동합니다.rm제공합니다.

5. 속도 테스트

이것은 매우 간단합니다. Chrome을 열지 않고도 인터넷 속도를 확인하려면속도 테스트당신을위한 것입니다.

Image for post
내 모든 끔찍한 속도를 보여주지는 않습니다. 당신은 아이디어를 얻습니다.

이것은 제가 자주 사용하는 도구이며 Chrome에서 추가 리소스를 씹을 필요가 없도록 뒷주머니에 항상 넣고 싶습니다. 또한 터미널에서하는 것도 꽤 멋지다.

당신은 필요합니다npm이 도구를 위해.

6. 위킷

이것은 훨씬 작은 저장소이며 나는 그것을 좋아합니다. iTerm2를 통해 하루 종일 터미널을 열어 두었 기 때문에 Wikipedia를 검색 할 수 있다는 것은 대단합니다.위킷터미널에서 할 수 있습니다. 내가 매일 이것을 얼마나 자주 사용하는지에 놀라실 것입니다.

Image for post
Apple을 검색하려면 "wikit apple company".

당신은 필요합니다npm이 도구를 위해.

7. 코인 탑

이 마지막은 모든 사람을위한 것은 아니지만 매일 사용합니다. 암호 화폐 세계에있는 분들은이 도구에 대해 이미 알고있을 것입니다.

저는 여기저기서 암호 화폐를 다루고 있으며 가격은 말할 것도없고 다양한 종류의 동전을 따라가는 것은 지칠 수 있습니다. 암호 화폐 세계에서 가격이 너무 빨리 움직이면서코인 탑생명의 은인입니다.

코인 탑에 연극이다상단명령. 그러나 시스템 정보를 표시하는 대신코인 탑암호 화폐에 대한 정보를 표시합니다.

Image for post
스턴 크

결론

매일 사용하는 CLI 도구가 훨씬 더 많지만이 도구는 내 툴킷에서 눈에 띄는 도구입니다. CLI 도구에 대해 영원히 갈 수 있습니다. 소프트웨어 세계에서 제가 가장 좋아하는 것들 중 하나입니다. 아주 사소한 작업을 수행 할 수있는 새로운 CLI 도구를 찾을 때마다 항상 흥분됩니다.

또한 이러한 도구의 대부분이 커뮤니티 기반이라는 사실이 마음에 듭니다. 많은 개발자들이 깔끔하다고 생각하기 때문에 작은 도구를 작업하고 있습니다.

다음 시간에서 만나요!

7 Awesome Command-Line Tools

Some familiar tools and some you probably haven’t tried yet

Aug 24 · 6 min read
Image for post
Photo by Maxwell Nelson on Unsplash.

The terminal/command line is a sacred tool that developers have under their belt. It is possibly the most used tool for programmers. I believe that is because of how lightweight it is and also the unbelievable amount of things you can do with it. Some developers even go the extra mile to do everything inside of the terminal. Kudos to them.

I’ll be showing some of the CLI (Command-Line Interface) tools that I personally think are awesome and use pretty much on a daily basis. Granted, there are so many tools out there for the command line that this list barely scratches the surface.

1. vim

What kind of terminal list wouldn’t include vim? There are tons of debates about whether or not vim is the editor for programming or if it’s a tool invented for lunatics, but we will not be discussing that here.

For those of you who are not familiar with vim, it is a text editor that improves on the out-of-the-box vi tool shipped with any UNIX system. It allows you to edit or create a file through your terminal.

Image for post
Basic usage of vim.

This tool is helpful if you want to quickly edit a file while you are in the terminal and don’t want to open up your IDE or a GUI text editor like VSCode or Sublime Text.

Keep in mind that this tool can be a little tricky to use when first learning it, as many of the shortcuts are not as intuitive as modern-day text editors. However, if you do invest the time to learn vim, it can be extremely powerful for a developer. This is why vim has a huge community. This community is so large that developers will even make plug-ins for popular IDEs and text editors to emulate the vim experience.

2. vtop

top is a very common command that is used within the terminal to display information about processes that your system has running and general information about the memory and CPU usage of your machine. If you have ever used top, it can be a little confusing to look at. So how can we make this information a little easier to process? Introducing vtop, an implementation of top that has graphs!

Image for post
vtop in action.

I like having a visual guide for anything, and having one for top information is killer. I have this running all day so that I can keep an eye on my system’s load.

You’re going to need npm for this tool.

3. fzf

This next one is a really cool tool. It’s called fzf. It’s a general-purpose command-line fuzzy finder that allows you to find files based on whatever you type. On its own, it’s an OK tool. It will list all the different files in the current directory you’re in. You can think of it as a Spotlight search, but in your terminal.

Image for post
Fuzzy-finding in my home.

Now the real power of this tool comes when you combine fzf with other existing commands like kill or cat. In order to do this, you’re going to need to run the install script that is provided with the package or inside the repository:

/usr/local/opt/fzf/installor~/.fzf/install

You will need to restart your terminal or source your .bashrc. It will ask you some questions, and once you’ve answered all of them, you will have unlocked fzf's fullest potential.

Now you can run commands like:

cat **[TAB]
vim **[TAB]
ssh **[TAB]

fzf will kick into gear and find all the possible entries that can work with the command:

Image for post
Similar to file finding an IDE.

Another cool application of this is using it with the kill command. This is probably the one I use most. The days of typing ps -ef | grep [process-name] and then either manually typing or copying the process ID to kill are long gone. Instead, you can run kill [tab] or kill -9 [tab]. Fuzzy-find the process you want to kill and press enter. It will automatically fill the process ID in for you.

Image for post
Awesome use case.

There are tons of other use cases that I can go over, but these are the main ones I would like to point out.

4. trash-cli

Ever rm -rf something and immediately realize that it wasn’t something you wanted to delete forever? I hope this isn't just me. If you don’t want to deal with that kind of anxiety, then I would recommend using trash-cli.

This tool basically just puts items inside your system’s trash instead of wiping it completely from existence.

Image for post
Moves files into the trash instead of oblivion.

Instead of typing out trash, I have an alias in my .bashrc that replaces the rm command:

alias rm=trash

Now when something is deleted using rm, you don’t have to worry about it being gone forever. You can simply retrieve it from the trash if you like. And yes, this works with different flags that rm provides.

5. speed-test

This one is pretty straightforward. If you want to see how fast your internet is without having to open up Chrome, speed-test is for you.

Image for post
I’m not showing you all my horrible speeds. You get the idea.

This is a tool I use quite frequently and always like to have in my back pocket just so that I don’t have to chew up additional resources from Chrome. Also, it’s pretty cool to do it in the terminal.

You’re going to need npm for this tool.

6. wikit

This one is a much smaller repo, and I love it. I have my terminal open all day via iTerm2, so being able to search Wikipedia is awesome. wikit allows you to do that from the terminal. You’d be surprised by how often I use this one on a day-to-day basis.

Image for post
“wikit apple company” if you want to search Apple.

You’re going to need npm for this tool.

7. cointop

This last one might not be for everyone, but I use it every day. For those of you who are in the crypto world, then you probably already know about this tool.

I dabble in cryptocurrency here and there, and keeping up with so many different types of coins — let alone their prices — can be exhausting. With prices moving so quickly in the crypto world, cointop is a lifesaver.

cointop is a play on the top command. However, instead of displaying system information, cointop displays information about cryptocurrencies.

Image for post
stonks

Conclusion

There are so many more CLI tools that I use on a day-to-day basis, but these are the ones that stand out to me in my toolkit. I can go on forever about CLI tools. They are one of my favorite things to tinker with in the world of software. I always get excited whenever I find a new CLI tool that allows me to accomplish something so minuscule.

I also love the fact that most of these tools are community-driven — a bunch of developers just working on a small tool because they think they’re neat.

I’ll see you all in the next one!

Rank Game Publisher
1 리니지2M NCSOFT
2 리니지M NCSOFT
3 Genshin Impact miHoYo Limited
4 바람의나라: 연 NEXON Company
5 기적의 검 4399 KOREA
6 R2M Webzen Inc.
7 KartRider Rush+ NEXON Company
8 V4 NEXON Company
9 리니지2 레볼루션 Netmarble
10 뮤 아크엔젤 Webzen Inc.
11 라이즈 오브 킹덤즈 LilithGames
12 블레이드&소울 레볼루션 Netmarble
13 A3: 스틸얼라이브 Netmarble
14 S.O.S:스테이트 오브 서바이벌 KingsGroup Holdings
15 가디언 테일즈 Kakao Games Corp.
16 AFK 아레나 LilithGames
17 그랑삼국 YOUZU(SINGAPORE)PTE.LTD.
18 용비불패M NHN Corp.
19 라루나 판타지 Eskyfun Entertainment
20 Cookie Run: OvenBreak - Endless Running Platformer Devsisters Corporation
21 PUBG MOBILE PUBG CORPORATION
22 Roblox Roblox Corporation
23 라그나로크 오리진 GRAVITY Co., Ltd.
24 Empires & Puzzles: Epic Match 3 Small Giant Games
25 스테리테일 4399 KOREA
26 Age of Z Origins Camel Games Limited
27 Lords Mobile: Kingdom Wars IGG.COM
28 슬램덩크 DeNA HONG KONG LIMITED
29 FIFA ONLINE 4 M by EA SPORTS™ NEXON Company
30 Epic Seven Smilegate Megaport
31 FIFA Mobile NEXON Company
32 일루전 커넥트 ChangYou
33 Brawl Stars Supercell
34 Gardenscapes Playrix
35 Pmang Poker : Casino Royal NEOWIZ corp
36 메이플스토리M NEXON Company
37 Homescapes Playrix
38 Rise of Empires: Ice and Fire Long Tech Network Limited
39 황제라 칭하라 Clicktouch Co., Ltd.
40 마구마구 2020 Netmarble
41 검은사막 모바일 PEARL ABYSS
42 페이트/그랜드 오더 Netmarble
43 컴투스프로야구2020 Com2uS
44 한게임 포커 NHN BIGFOOT
45 Summoners War Com2uS
46 달빛조각사 Kakao Games Corp.
47 Pokémon GO Niantic, Inc.
48 에오스 레드 BluePotion Games
49 궁3D WISH INTERACTIVE TECHNOLOGY LIMITED
50 킹덤 : 전쟁의 불씨 파우게임즈

이 4 가지하지 말아야 할 사항으로 Python Lambda 함수 마스터

람다를 사용하되 오용하지 마십시오.

9 월 25 일 · 최소 읽기
Narrow stairs leading to a beach on a sunny day.
~의 사진카칙 시모니 안의 위에Unsplash.

Lambda 함수는 Python의 익명 함수입니다. 소규모 작업을 수행해야 할 때 로컬 환경에서 사용하면 편리한 기술입니다. 어떤 사람들은 단순히 람다라고 부르며 다음 구문을 사용합니다.

lambda arguments: expression

람다 함수의 생성은람다키워드 다음에 인수 목록과 콜론으로 구분 된 단일 표현식이옵니다. 예를 들어람다 x : 2 * x단순히 입력 된 숫자에 2를 곱하는 반면람다 x, y : x + y단순히 두 숫자의 합을 계산합니다. 구문은 매우 간단합니다. 그렇죠?

람다 함수가 무엇인지 알고 있다는 가정하에이 문서는 람다 함수를 올바르게 사용하는 방법에 대한 몇 가지 일반적인 지침을 제공하기위한 것입니다.

1. 값을 반환하지 마십시오

구문을 살펴보면 람다 함수에 대해 아무것도 반환하지 않는 것을 알 수 있습니다. 람다 함수는 하나의 표현식 만 포함 할 수 있기 때문입니다. 그러나 사용반환keyword는 아래와 같이 필수 구문과 호환되지 않는 명령문을 구성합니다.

람다로 돌아 오지 않음

이 실수는 아마도 표현과 진술을 구별 할 수 없기 때문에 발생합니다. 다음과 같은 진술반환,시험,, 및만약특정 작업을 수행합니다. 그러나 표현식은 숫자 또는 기타 Python 객체와 같은 단일 값으로 평가할 수있는 표현식입니다.

람다 함수를 사용하면 단일 표현식은 다음에 사용되는 단일 값을 평가합니다.분류함수.

2. 더 나은 대안을 잊지 마세요

가장 일반적인 사용 사례 중 하나는 람다 함수를다음과 같은 일부 내장 유틸리티 함수의 인수정렬 됨 ()max (), 위에 표시된대로. 상황에 따라 다른 대안을 사용할 수 있습니다. 다음 예를 고려하십시오.

내장 기능 사용

데이터 과학에서 많은 사람들이판다데이터를 처리하는 라이브러리. 람다 함수를 사용하여 기존 데이터에서 새 데이터를 만들 수 있습니다.지도()기능, 아래와 같이. 람다 함수를 사용하는 대신 Pandas에서 지원되기 때문에 산술 함수를 직접 사용할 수 있습니다.

시리즈의 Lambda 함수

3. 변수에 할당하지 마십시오

일부 사람들은 람다 함수가 간단한 함수를 선언하는 다른 방법이라고 잘못 생각하는 것을 보았으며 사람들이 다음을 수행하는 것을 보았을 것입니다.

람다 함수 이름 지정

람다 함수 이름 지정의 유일한 용도는 아마도 람다 함수가 실제로 다른 함수와 마찬가지로 호출되고 함수 유형을 갖는 함수임을 보여주기위한 교육 목적 일 것입니다. 그 외에는 람다 함수를 변수에 할당하면 안됩니다.

람다 함수 이름 지정의 문제점은 디버깅이 덜 간단하다는 것입니다. 일반 기능을 사용하여 생성되는 다른 기능과 달리데프키워드, 람다 함수에는 이름이 없으므로 익명 함수라고도합니다. 이 뉘앙스를 확인하려면 다음과 같은 간단한 예를 고려하십시오.

람다 함수 디버깅
  • 코드에 람다 함수에 문제가있는 경우 (예 :inversive0),역 추적오류 정보는 람다 함수에 버그가 있음을 알려줄 수 있습니다.
  • 반대로 정기적으로 정의 된 함수를 사용하면역 추적문제가있는 기능 (예 :inversive1).

이와 관련하여 람다 함수를 두 번 이상 사용하려는 유혹이있는 경우 가장 좋은 방법은 다음을 사용하여 일반 함수를 사용하는 것입니다.데프이 키워드는 독 스트링을 가질 수도 있습니다.

4. 목록 이해를 잊지 마세요

어떤 사람들은 다음과 같은 고차 함수와 함께 람다 함수를 사용하기를 좋아합니다.지도또는필터. 이 사용법에 대한 다음 예를 고려하십시오.

지도 및 필터 기능

람다 함수를 사용하는 대신 가독성이 더 좋은 목록 이해를 사용할 수 있습니다. 아래와 같이 목록 이해력을 사용하여 동일한 목록 개체를 만듭니다. 보시다시피 이전 사용지도필터람다 함수가있는 함수는 목록 이해에 비해 더 복잡합니다. 따라서 고차 함수를 포함하는 목록을 만들 때 목록 이해력 사용을 고려해야합니다.

목록 이해

결론

이 기사에서는 누군가가 람다 함수로 할 수있는 4 가지 일반적인 실수를 검토했습니다. 이러한 실수를 피하면 코드에서 람다 함수를 올바르게 사용할 수 있습니다.

람다 함수를 사용하는 경험 법칙은 단순하게 유지하고 로컬에서 한 번만 사용하는 것입니다.

Master Python Lambda Functions With These 4 Don’ts

Use lambdas, but don’t misuse them

Sep 25 · 3 min read
Narrow stairs leading to a beach on a sunny day.
Photo by Khachik Simonian on Unsplash.

Lambda functions are anonymous functions in Python. Using them is a handy technique in a local environment when you need to perform a small job. Some people simply refer to them as lambdas, and they have the following syntax:

lambda arguments: expression

The creation of a lambda function is signaled by the lambda keyword, followed by the list of arguments and a single expression separated by a colon. For instance, lambda x: 2 * x simply multiplies any input number by two, while lambda x, y: x+y simply calculates the sum of two numbers. The syntax is pretty straightforward, right?

With the assumption that you know what a lambda function is, this article is intended to provide some general guidelines on how to use lambda functions properly.

1. Don’t Return Any Value

Looking at the syntax, you may notice that we don’t return anything for the lambda function. It’s all because lambda functions can only contain a single expression. However, the use of the return keyword will constitute a statement that is incompatible with the required syntax, as shown below:

No return in lambda

This mistake probably arises due to the inability to differentiate expressions from statements. Statements like those involving return, try, with, and if perform particular actions. However, expressions are those that can be evaluated to a single value, such as a number or other Python objects.

With lambda functions, the single expression will evaluate a single value that is used subsequently, such as being sorted by the sorted function.

2. Don’t Forget About Better Alternatives

One of the most common use cases is to set a lambda function to the key argument of some built-in utility functions, such as sorted() and max(), as shown above. Depending on the situation, we can use other alternatives. Consider the following examples:

Use of built-in functions

In data science, many people use the pandas library to process data. We can use the lambda function to create new data from existing data using the map() function, as shown below. Instead of using a lambda function, we can simply use the arithmetic function directly because it’s supported in pandas:

Lambda function in series

3. Don’t Assign It to a Variable

I’ve seen some people mistakenly think that a lambda function is an alternative way to declare a simple function, and you may have seen people do the following:

Name lambda function

The only use of naming a lambda function is probably for teaching purposes to show that a lambda function is indeed a function just like other functions — to be called and having a type of function. Other than that, we shouldn’t assign a lambda function to a variable.

The problem with naming a lambda function is that it makes debugging less straightforward. Unlike other functions that are created using the regular def keyword, lambda functions don’t have names, which is why they’re sometimes referred to as anonymous functions. Consider the following trivial example to see this nuance:

Debugging of lambda functions
  • When your code has problems with a lambda function (i.e. inversive0), the Traceback error information can only tell you that a lambda function has bugs.
  • By contrast, with a regularly defined function, the Traceback will clearly inform you of the problematic function (i.e. inversive1).

Related to this, if you have the temptation to use a lambda function more than once, the best practice is to use a regular function using the def keyword, which will also allow you to have docstrings.

4. Don’t Forget About List Comprehension

Some people like to use lambda functions with higher-order functions, such as map or filter. Consider the following example for this usage:

The map and filter functions

Instead of using the lambda function, we can use list comprehension, which has better readability. As shown below, we use list comprehension to create the same list objects. As you can see, the previous usage of map and filter functions with lambda functions is more cumbersome compared to list comprehension. So you should consider using list comprehension when you’re creating lists involving higher-order functions.

List comprehension

Conclusion

In this article, we reviewed four common mistakes that someone may make with lambda functions. By avoiding these mistakes, you should be able to use lambda functions properly in your code.

The rule of thumb for using lambda functions is to keep it simple and use them just once locally.

경기도 수원시 장안구 연무로13번길 73, 2층202호 [집합건물 연와조 44.40㎡]

항목
경매번호 2020타경9717
경매날짜 2020.10.29
법원 수원지방법원
담당 경매7계
감정평가금액 41,000,000
경매가 41,000,000(100%)
유찰여부 신건

  • 대지권이 없는 건물만의 매각이며, 이 사건 건물의 철거를 명하는 확정판결(수원지방법원 2014가단32072)이 있음

<최근 1년 실거래가 정보>
- 총 거래 수: 0건
- 동일 평수 거래 수: 0건




경기도 수원시 팔달구 권광로 373, 104동 22층2201호 (우만동,월드메르디앙아파트) [집합건물 철근콘크리트조 84.237㎡]

항목
경매번호 2020타경9205
경매날짜 2020.10.29
법원 수원지방법원
담당 경매7계
감정평가금액 601,000,000
경매가 601,000,000(100%)
유찰여부 신건


<최근 1년 실거래가 정보>
- 총 거래 수: 111건
- 동일 평수 거래 수: 45건
최근 1년 동일 평수 거래건 보기

날짜 전용면적 가격
2020-10-10 84.237 16 59000
2020-10-10 84.237 18 59000
2020-10-21 84.237 7 58000
2020-10-21 84.237 7 58000
2020-09-17 84.552 24 55000
2020-09-26 84.237 19 56500
2020-09-26 84.237 15 58000
2020-09-06 84.237 17 56900
2020-08-08 84.552 14 57000
2020-07-17 84.237 8 58500
2020-07-17 84.237 4 57500
2020-06-11 84.237 8 59500
2020-06-18 84.237 13 60000
2020-06-23 84.237 24 56000
2020-05-02 84.237 28 56500
2020-05-28 84.237 30 56700
2020-04-10 84.552 16 57800
2020-03-20 84.237 16 59500
2020-03-09 84.237 17 60000
2020-02-15 84.552 9 55000
2020-02-19 84.237 26 60000
2020-02-08 84.552 17 56500
2020-01-10 84.237 7 55500
2020-01-15 84.237 17 50000
2020-01-16 84.237 23 55000
2020-01-17 84.237 2 46000
2020-01-21 84.552 27 54500
2020-01-23 84.237 25 59500
2019-12-13 84.237 4 45300
2019-12-30 84.237 9 46000
2019-12-04 84.237 8 46500
2019-12-09 84.237 17 46300
2019-11-14 84.237 24 45000
2019-11-16 84.552 9 40500
2019-11-20 84.552 7 41600
2019-11-21 84.237 15 44000
2019-11-21 84.237 18 46100
2019-11-21 84.237 19 45000
2019-11-30 84.237 22 44500
2019-11-30 84.552 27 41000
2019-11-04 84.237 8 45000
2019-10-10 84.237 2 41600
2019-10-19 84.237 15 45000
2019-10-03 84.237 25 45700
2019-10-31 84.237 10 45600






경기도 수원시 권선구 권광로27번길 22, 2동 2층209호 (권선동,신현대아파트) [집합건물 철근콘크리트조 84.99㎡]

항목
경매번호 2020타경6794
경매날짜 2020.10.29
법원 수원지방법원
담당 경매7계
감정평가금액 260,000,000
경매가 260,000,000(100%)
유찰여부 신건


<최근 1년 실거래가 정보>
- 총 거래 수: 20건
- 동일 평수 거래 수: 20건
최근 1년 동일 평수 거래건 보기

날짜 전용면적 가격
2020-10-21 84.99 8 27750
2020-09-09 84.99 10 27500
2020-08-18 84.99 4 25500
2020-08-25 84.99 7 28000
2020-06-17 84.99 7 26500
2020-06-26 84.99 8 26000
2020-06-26 84.99 10 28700
2020-05-04 84.99 11 29900
2020-04-16 84.99 5 24500
2020-03-16 84.99 4 26000
2020-02-11 84.99 8 23800
2020-02-12 84.99 8 24800
2020-02-12 84.99 6 25500
2020-02-14 84.99 8 24500
2020-02-19 84.99 2 24000
2020-02-24 84.99 10 26500
2020-02-07 84.99 10 23800
2020-02-07 84.99 7 24000
2020-01-17 84.99 5 23000
2019-12-12 84.99 2 24500






경기도 수원시 장안구 파장천로 18-2, 5층502호 (파장동,온리유빌라1) [집합건물 철근콘크리트구조 46.63㎡]

항목
경매번호 2020타경6732
경매날짜 2020.10.28
법원 수원지방법원
담당 경매5계
감정평가금액 175,000,000
경매가 85,750,000(49%)
유찰여부 유찰\t2회


<최근 1년 실거래가 정보>
- 총 거래 수: 0건
- 동일 평수 거래 수: 0건




경기도 수원시 권선구 정조로 432, 105동 2층210호 [집합건물 철근콘크리트조 46.68㎡ 2분의 1 김영균지분 전부]

항목
경매번호 2020타경6114
경매날짜 2020.10.28
법원 수원지방법원
담당 경매5계
감정평가금액 110,000,000
경매가 110,000,000(100%)
유찰여부 신건

  • 지분매각, 공유자 우선매수신고 제한있음(우선매수신청을 한 공유자는 당해 매각기일 종결 전까지 보증금을 제공하여야 하며, 매수신청권리를 행사하지 않는 경우에는 차회 기일부터는 우선권이 없음)

<최근 1년 실거래가 정보>
- 총 거래 수: 0건
- 동일 평수 거래 수: 0건




경기도 수원시 영통구 영통로290번길 25, 504동 18층1803호 (영통동,신나무실주공아파트) [집합건물 철근콘크리트조 59.99㎡]

항목
경매번호 2020타경60279
경매날짜 2020.11.04
법원 수원지방법원
담당 경매6계
감정평가금액 283,000,000
경매가 283,000,000(100%)
유찰여부 신건


<최근 1년 실거래가 정보>
- 총 거래 수: 324건
- 동일 평수 거래 수: 224건
최근 1년 동일 평수 거래건 보기

날짜 전용면적 가격
2020-10-16 59.99 17 35000
2020-10-17 59.99 11 35000
2020-10-22 59.99 18 34500
2020-10-23 59.99 14 34300
2020-10-23 59.96 3 32900
2020-10-23 59.99 12 34000
2020-10-26 59.99 12 36000
2020-10-09 59.99 4 34000
2020-09-19 59.99 5 30950
2020-09-24 59.99 20 31000
2020-09-25 59.99 12 35900
2020-09-26 59.99 11 32000
2020-09-28 59.99 5 32000
2020-09-29 59.99 13 34500
2020-09-08 59.99 7 32000
2020-08-12 59.99 10 29000
2020-08-21 59.99 7 34900
2020-08-29 59.99 8 34200
2020-07-02 59.99 14 35000
2020-07-28 59.99 5 28000
2020-07-03 59.99 14 28500
2020-07-08 59.99 17 34000
2020-06-01 59.99 8 28700
2020-06-01 59.99 9 29000
2020-06-10 59.99 6 29000
2020-06-11 59.99 17 29800
2020-06-13 59.99 14 29800
2020-06-13 59.99 10 29990
2020-06-13 59.99 2 26800
2020-06-13 59.99 1 26000
2020-06-13 59.99 12 29000
2020-06-15 59.99 8 32500
2020-06-15 59.99 8 33000
2020-06-16 59.99 2 27500
2020-06-16 59.94 19 30800
2020-06-17 59.99 14 29000
2020-06-02 59.94 12 27500
2020-06-02 59.94 13 27800
2020-06-20 59.99 12 31500
2020-06-23 59.99 10 31000
2020-06-24 59.99 18 30500
2020-06-25 59.99 11 29900
2020-06-26 59.99 12 31900
2020-06-03 59.99 15 29000
2020-06-03 59.99 17 30000
2020-06-06 59.99 9 28000
2020-06-08 59.99 11 29990
2020-06-09 59.99 9 29000
2020-05-01 59.99 6 28000
2020-05-01 59.99 15 29000
2020-05-01 59.99 1 26200
2020-05-11 59.99 9 27500
2020-05-13 59.99 1 24700
2020-05-14 59.99 6 27500
2020-05-16 59.99 17 29100
2020-05-16 59.99 17 28300
2020-05-16 59.99 18 27800
2020-05-02 59.94 14 27500
2020-05-02 59.99 12 29000
2020-05-22 59.99 14 26000
2020-05-24 59.99 10 28300
2020-05-30 59.99 1 26500
2020-05-30 59.99 4 28000
2020-05-30 59.99 3 28000
2020-05-04 59.99 14 28000
2020-05-04 59.99 15 28000
2020-05-05 59.99 17 28800
2020-05-05 59.99 4 28000
2020-05-06 59.99 17 29000
2020-05-07 59.99 13 29000
2020-05-09 59.99 10 28000
2020-04-17 59.99 5 27950
2020-04-23 59.99 18 26300
2020-04-27 59.99 9 28000
2020-04-28 59.99 16 27000
2020-04-28 59.99 9 28500
2020-04-30 59.99 15 28000
2020-04-04 59.99 3 26900
2020-04-04 59.99 14 28000
2020-03-10 59.99 8 26300
2020-03-13 59.96 3 25900
2020-03-17 59.99 11 29150
2020-03-23 59.99 14 29000
2020-03-23 59.99 16 29800
2020-03-26 59.94 10 22000
2020-03-29 59.99 8 29200
2020-03-03 59.99 17 30000
2020-03-31 59.99 11 29990
2020-03-05 59.99 5 27300
2020-02-01 59.99 10 28000
2020-02-01 59.99 2 23500
2020-02-01 59.99 9 26000
2020-02-10 59.99 14 28000
2020-02-11 59.99 4 27000
2020-02-11 59.96 15 24000
2020-02-11 59.99 9 28500
2020-02-11 59.99 2 22000
2020-02-11 59.99 8 30000
2020-02-11 59.99 9 28000
2020-02-12 59.99 2 25300
2020-02-12 59.99 4 27800
2020-02-13 59.96 7 25500
2020-02-14 59.99 6 27000
2020-02-14 59.99 11 27000
2020-02-14 59.99 11 27800
2020-02-15 59.96 5 24500
2020-02-15 59.99 1 23000
2020-02-15 59.99 15 29800
2020-02-17 59.99 15 26800
2020-02-17 59.96 9 25300
2020-02-17 59.99 7 27500
2020-02-17 59.99 7 27000
2020-02-18 59.96 3 27000
2020-02-19 59.96 15 20000
2020-02-19 59.96 9 26700
2020-02-19 59.99 9 26500
2020-02-02 59.99 18 25000
2020-02-21 59.99 3 26400
2020-02-22 59.99 11 28400
2020-02-28 59.99 14 30000
2020-02-03 59.96 9 23500
2020-02-04 59.96 2 21000
2020-02-04 59.99 4 26500
2020-02-05 59.99 15 27000
2020-02-05 59.99 4 25750
2020-02-05 59.99 3 27500
2020-02-05 59.99 16 25800
2020-02-06 59.99 7 28000
2020-02-06 59.99 6 26000
2020-02-07 59.99 4 25000
2020-02-07 59.99 18 25000
2020-02-07 59.99 8 29500
2020-02-07 59.99 7 23500
2020-02-08 59.99 6 29300
2020-01-10 59.99 7 24000
2020-01-11 59.99 16 23500
2020-01-14 59.99 13 26000
2020-01-14 59.99 7 21200
2020-01-15 59.99 6 24000
2020-01-16 59.99 3 23500
2020-01-17 59.99 18 25200
2020-01-17 59.96 3 22300
2020-01-17 59.96 13 23500
2020-01-18 59.99 10 25000
2020-01-18 59.99 13 23000
2020-01-18 59.99 12 23000
2020-01-02 59.99 3 22000
2020-01-02 59.94 16 22000
2020-01-20 59.99 13 24000
2020-01-21 59.99 17 25000
2020-01-21 59.99 13 23350
2020-01-21 59.99 13 26000
2020-01-21 59.99 18 23500
2020-01-22 59.99 16 23500
2020-01-23 59.99 17 26000
2020-01-23 59.99 15 24300
2020-01-23 59.99 1 22500
2020-01-28 59.99 2 24500
2020-01-28 59.99 15 26000
2020-01-28 59.99 9 25000
2020-01-29 59.99 13 24800
2020-01-29 59.99 16 26000
2020-01-29 59.99 14 23500
2020-01-03 59.99 14 24000
2020-01-30 59.99 4 24000
2020-01-30 59.99 4 24000
2020-01-31 59.99 5 25500
2020-01-31 59.99 5 24500
2020-01-04 59.99 16 22950
2020-01-04 59.99 11 24900
2020-01-06 59.96 12 23400
2020-01-07 59.99 16 25000
2019-12-10 59.94 5 20800
2019-12-10 59.99 8 23300
2019-12-13 59.99 15 22500
2019-12-13 59.99 8 22800
2019-12-14 59.94 6 21000
2019-12-16 59.99 7 23900
2019-12-17 59.99 11 22200
2019-12-18 59.96 11 21300
2019-12-19 59.99 1 19800
2019-12-02 59.99 4 24000
2019-12-20 59.99 4 20000
2019-12-20 59.94 10 21000
2019-12-20 59.99 5 22500
2019-12-21 59.99 2 21000
2019-12-23 59.99 17 23000
2019-12-23 59.99 12 23000
2019-12-24 59.99 17 22500
2019-12-24 59.96 7 23500
2019-12-24 59.99 19 23000
2019-12-25 59.99 11 24500
2019-12-25 59.94 8 21800
2019-12-27 59.99 17 23500
2019-12-28 59.96 7 22000
2019-12-03 59.99 10 22800
2019-12-03 59.99 17 23500
2019-12-31 59.99 1 21000
2019-12-31 59.99 1 20000
2019-12-31 59.99 7 23000
2019-12-06 59.96 13 21300
2019-11-14 59.99 9 22350
2019-11-16 59.96 4 20000
2019-11-02 59.99 1 20600
2019-11-02 59.99 11 24500
2019-11-21 59.99 8 22000
2019-11-24 59.99 11 22900
2019-11-26 59.99 11 22700
2019-11-27 59.99 5 22000
2019-11-27 59.99 10 22000
2019-11-29 59.96 5 20450
2019-11-30 59.99 4 22000
2019-11-30 59.99 16 23500
2019-11-05 59.99 5 21900
2019-11-08 59.99 9 22000
2019-10-01 59.99 8 21000
2019-10-19 59.99 11 22000
2019-10-20 59.96 6 19850
2019-10-21 59.99 4 21000
2019-10-25 59.99 8 22700
2019-10-29 59.99 17 22000
2019-10-03 59.99 3 20300
2019-10-05 59.99 5 20500
2019-10-08 59.99 12 22300






경기도 수원시 장안구 장안로427번길 25, 2층201호 [집합건물 철근콘크리트벽식조 81.06㎡]

항목
경매번호 2020타경59545
경매날짜 2020.10.29
법원 수원지방법원
담당 경매7계
감정평가금액 192,000,000
경매가 134,400,000(70%)
유찰여부 유찰\t1회


<최근 1년 실거래가 정보>
- 총 거래 수: 0건
- 동일 평수 거래 수: 0건




경기도 수원시 권선구 탑동로3번길 58-15, 102동 6층601호 (탑동,청우아파트) [집합건물 철근콘크리트구조 73.52㎡]

항목
경매번호 2020타경59057
경매날짜 2020.11.03
법원 수원지방법원
담당 경매4계
감정평가금액 226,000,000
경매가 226,000,000(100%)
유찰여부 신건


<최근 1년 실거래가 정보>
- 총 거래 수: 1건
- 동일 평수 거래 수: 1건
최근 1년 동일 평수 거래건 보기

날짜 전용면적 가격
2020-06-10 73.52 5 19700






경기도 수원시 영통구 영통로173번길 37, 102동 17층1704호 (망포동,망포역마을쌍용아파트) [집합건물 철근콘크리트조 124.571㎡]

항목
경매번호 2020타경58436
경매날짜 2020.10.29
법원 수원지방법원
담당 경매7계
감정평가금액 568,000,000
경매가 397,600,000(70%)
유찰여부 유찰\t1회


<최근 1년 실거래가 정보>
- 총 거래 수: 66건
- 동일 평수 거래 수: 20건
최근 1년 동일 평수 거래건 보기

날짜 전용면적 가격
2020-10-20 124.571 5 54000
2020-09-14 124.571 17 55000
2020-09-14 124.571 15 53000
2020-09-17 124.571 8 52500
2020-09-19 124.571 15 54000
2020-09-19 124.571 11 54500
2020-06-26 124.571 20 51500
2020-02-17 124.571 4 49000
2020-01-20 124.571 20 43000
2019-12-16 124.571 4 40000
2019-11-16 124.571 3 34500
2019-11-18 124.571 12 39000
2019-11-02 124.571 5 37500
2019-11-22 124.571 4 37000
2019-11-04 124.571 16 38000
2019-10-11 124.571 1 33500
2019-10-14 124.571 7 38900
2019-10-19 124.571 5 38500
2019-10-29 124.571 7 38700
2019-10-05 124.571 13 37900






경기도 수원시 장안구 화산로285번길 12, 101동 11층1108호 (율전동,화남아파트) [집합건물 철근콘크리트 벽식구조 59.93㎡]

항목
경매번호 2020타경57792
경매날짜 2020.11.03
법원 수원지방법원
담당 경매4계
감정평가금액 228,000,000
경매가 228,000,000(100%)
유찰여부 신건


<최근 1년 실거래가 정보>
- 총 거래 수: 27건
- 동일 평수 거래 수: 17건
최근 1년 동일 평수 거래건 보기

날짜 전용면적 가격
2020-09-07 59.93 20 23500
2020-08-12 59.93 4 23000
2020-08-07 59.93 20 23900
2020-06-20 59.93 10 23800
2020-05-31 59.93 12 23300
2020-04-15 59.93 2 20050
2020-02-01 59.93 20 19900
2020-02-11 59.93 7 21300
2020-02-16 59.93 16 20350
2020-02-17 59.93 7 19500
2020-02-19 59.93 17 20000
2020-02-23 59.93 14 20100
2020-02-24 59.93 14 22500
2020-01-17 59.93 7 19800
2019-12-28 59.93 10 20000
2019-11-30 59.93 9 19900
2019-10-30 59.93 17 19500






경기도 수원시 권선구 경수대로302번길 22, 102동 2층202호 (권선동,권선한양아파트) [집합건물 철근콘크리트 피.씨조 40.36㎡]

항목
경매번호 2020타경55901
경매날짜 2020.11.04
법원 수원지방법원
담당 경매6계
감정평가금액 160,000,000
경매가 112,000,000(70%)
유찰여부 유찰\t1회


<최근 1년 실거래가 정보>
- 총 거래 수: 70건
- 동일 평수 거래 수: 47건
최근 1년 동일 평수 거래건 보기

날짜 전용면적 가격
2020-10-14 40.36 1 14200
2020-10-22 40.36 7 16000
2020-10-23 40.36 2 15900
2020-10-23 40.36 7 16300
2020-09-16 40.36 6 16700
2020-09-05 40.36 11 17000
2020-09-05 40.36 11 15700
2020-08-10 40.36 9 16500
2020-08-12 40.36 6 16000
2020-08-04 40.36 2 14400
2020-07-02 40.36 10 15500
2020-07-08 40.36 10 16050
2020-07-08 40.36 4 15200
2020-06-12 40.36 1 14200
2020-06-13 40.36 4 15800
2020-05-18 40.36 7 16500
2020-05-02 40.36 3 16000
2020-05-04 40.36 1 14000
2020-05-08 40.36 6 16100
2020-04-15 40.36 12 16200
2020-04-06 40.36 12 16000
2020-03-10 40.36 11 16000
2020-03-11 40.36 3 15500
2020-03-04 40.36 6 16000
2020-02-10 40.36 2 15000
2020-02-10 40.36 2 15000
2020-02-10 40.36 10 15200
2020-02-11 40.36 4 15500
2020-02-12 40.36 7 16200
2020-02-12 40.36 9 16000
2020-02-14 40.36 5 15900
2020-02-15 40.36 3 15500
2020-02-17 40.36 7 16000
2020-02-17 40.36 11 16300
2020-02-18 40.36 9 16400
2020-02-18 40.36 6 16000
2020-02-19 40.36 3 16000
2020-02-05 40.36 9 15500
2020-02-06 40.36 1 12900
2020-01-28 40.36 5 14400
2019-12-17 40.36 3 14800
2019-12-20 40.36 4 14000
2019-12-23 40.36 12 14000
2019-12-25 40.36 1 12450
2019-11-27 40.36 10 13500
2019-11-28 40.36 6 15000
2019-10-09 40.36 13 14100






경기도 수원시 권선구 구운로47번길 59, 102동 9층901호 (구운동,서수원엠코타운르본느) [집합건물 철근콘크리트구조 84.8116㎡ 2분의 1 오금례 지분 전부]

항목
경매번호 2020타경5494
경매날짜 2020.10.27
법원 수원지방법원
담당 경매2계
감정평가금액 145,500,000
경매가 145,500,000(100%)
유찰여부 신건

  • 1.지분매각임. 2.공유자 우선매수신고 제한있음(공유자의 우선매수권(민사집행법 제140조) 행사에 따른 매수신고가 매수보증금의 미납으로 실효되는 경우, 그 공유자는 해당 부동산의 다음 매각기일에서는 이후 우선매수권을 행사할 수 없음)

<최근 1년 실거래가 정보>
- 총 거래 수: 32건
- 동일 평수 거래 수: 24건
최근 1년 동일 평수 거래건 보기

날짜 전용면적 가격
2020-09-17 84.9194 5 29000
2020-09-19 84.9194 9 28000
2020-07-29 84.903 8 29500
2020-07-03 84.9194 5 26800
2020-07-08 84.8166 8 29200
2020-06-20 84.903 8 29000
2020-06-29 84.903 13 29000
2020-04-10 84.903 1 26500
2020-04-22 84.903 2 27100
2020-04-23 84.8166 6 28500
2020-04-30 84.8166 11 28500
2020-02-10 84.9194 8 26700
2020-02-15 84.903 8 27000
2020-02-15 84.8166 3 26800
2020-02-20 84.903 5 27400
2020-02-06 84.8166 4 28000
2020-01-13 84.903 4 26200
2020-01-22 84.903 12 27900
2020-01-09 84.903 11 25800
2019-12-01 84.9194 4 25000
2019-12-21 84.903 7 27000
2019-11-13 84.8166 9 27400
2019-11-22 84.8166 3 26500
2019-10-21 84.8166 9 26300






경기도 수원시 장안구 정자천로188번길 71-21, 101동 10층1002호 (정자동,현대아파트) [집합건물 철근콘크리트조 84.94㎡]

항목
경매번호 2020타경51107
경매날짜 2020.11.03
법원 수원지방법원
담당 경매4계
감정평가금액 241,000,000
경매가 168,700,000(70%)
유찰여부 유찰\t1회


<최근 1년 실거래가 정보>
- 총 거래 수: 15건
- 동일 평수 거래 수: 15건
최근 1년 동일 평수 거래건 보기

날짜 전용면적 가격
2020-08-13 84.94 6 25000
2020-08-18 84.94 2 25000
2020-08-28 84.94 8 23000
2020-07-13 84.53 4 22300
2020-06-15 84.94 6 26300
2020-06-17 84.94 3 24000
2020-06-17 84.94 2 23300
2020-06-25 84.94 3 24000
2020-05-11 84.94 3 23500
2020-04-20 84.53 8 22500
2020-02-12 84.53 1 20300
2020-02-25 84.94 5 23300
2020-02-29 84.94 5 25000
2020-02-08 84.94 7 24000
2019-12-22 84.94 3 20500






경기도 수원시 권선구 권중로 82, 707동 3층301호 (권선동,신우아파트) [집합건물 철근콘크리트 벽식구조 74.61㎡]

항목
경매번호 2020타경3719
경매날짜 2020.11.10
법원 수원지방법원
담당 경매8계
감정평가금액 292,000,000
경매가 204,400,000(70%)
유찰여부 유찰\t1회


<최근 1년 실거래가 정보>
- 총 거래 수: 56건
- 동일 평수 거래 수: 25건
최근 1년 동일 평수 거래건 보기

날짜 전용면적 가격
2020-08-14 74.61 7 28500
2020-07-27 74.61 5 28500
2020-07-27 74.61 5 29400
2020-07-03 74.61 12 28500
2020-07-31 74.61 4 28500
2020-07-04 74.61 7 28500
2020-06-16 74.61 2 27300
2020-06-16 74.61 11 27300
2020-06-17 74.61 11 27900
2020-06-26 74.61 7 28000
2020-05-28 74.61 9 28000
2020-04-15 74.61 10 28500
2020-04-20 74.61 8 29500
2020-02-29 74.61 5 28000
2020-02-03 74.61 8 26300
2020-02-07 74.61 5 25500
2020-01-15 74.61 9 25300
2020-01-17 74.61 7 25000
2020-01-17 74.61 5 25000
2020-01-30 74.61 9 27200
2020-01-31 74.61 4 25300
2020-01-08 74.61 10 24740
2019-12-10 74.61 7 25000
2019-12-13 74.61 10 23500
2019-12-18 74.61 2 26000






경기도 수원시 영통구 영통로 498, 143동 6층601호 (영통동,황골마을주공1단지아파트) [집합건물 철근콘크리트조 59.99㎡]

항목
경매번호 2020타경2716,2020타경57518(병합)
경매날짜 2020.11.10
법원 수원지방법원
담당 경매8계
감정평가금액 260,000,000
경매가 182,000,000(70%)
유찰여부 유찰\t1회

  • 재매각임. 매수신청보증액은 최저매각가격의 3할임

<최근 1년 실거래가 정보>
- 총 거래 수: 559건
- 동일 평수 거래 수: 462건
최근 1년 동일 평수 거래건 보기

날짜 전용면적 가격
2020-10-14 59.99 6 34000
2020-10-17 59.99 12 32000
2020-10-17 59.99 1 28400
2020-10-17 59.99 16 29900
2020-10-17 59.99 16 35500
2020-10-17 59.99 18 35750
2020-10-21 59.99 11 35900
2020-10-21 59.99 4 35000
2020-10-21 59.99 13 34700
2020-10-22 59.99 20 24000
2020-10-05 59.94 14 28800
2020-10-09 59.99 5 33000
2020-10-09 59.99 19 34500
2020-10-09 59.99 12 32000
2020-10-09 59.99 8 33000
2020-09-01 59.99 18 32500
2020-09-11 59.99 11 36500
2020-09-14 59.99 15 34700
2020-09-14 59.99 20 28800
2020-09-15 59.94 6 27000
2020-09-17 59.99 16 30300
2020-09-17 59.94 1 26000
2020-09-18 59.99 18 36500
2020-09-18 59.99 7 33750
2020-09-19 59.94 11 27500
2020-09-24 59.8 11 34800
2020-09-25 59.99 11 34300
2020-09-25 59.99 15 32000
2020-09-25 59.99 11 34200
2020-09-28 59.99 14 33700
2020-09-28 59.99 18 36300
2020-09-04 59.99 6 31000
2020-09-05 59.99 12 34000
2020-09-05 59.99 12 35900
2020-08-01 59.99 13 32900
2020-08-10 59.99 1 25000
2020-08-11 59.99 3 29800
2020-08-13 59.99 15 33200
2020-08-17 59.99 9 32500
2020-08-18 59.99 10 36000
2020-08-18 59.99 11 32900
2020-08-18 59.99 14 32000
2020-08-18 59.99 16 31000
2020-08-19 59.99 6 30500
2020-08-26 59.99 19 35900
2020-08-26 59.94 2 28800
2020-08-27 59.99 11 33700
2020-08-29 59.99 3 34000
2020-08-29 59.99 8 30000
2020-08-29 59.99 13 32000
2020-08-31 59.99 7 30000
2020-08-06 59.99 5 33000
2020-07-01 59.8 14 31500
2020-07-10 59.99 1 28800
2020-07-13 59.8 4 25000
2020-07-13 59.99 14 30000
2020-07-13 59.99 16 35500
2020-07-15 59.99 2 27500
2020-07-15 59.99 11 32000
2020-07-16 59.99 7 29500
2020-07-18 59.99 2 29500
2020-07-02 59.99 6 30500
2020-07-23 59.8 10 32000
2020-07-24 59.99 17 30000
2020-07-28 59.99 18 32000
2020-07-03 59.99 10 34000
2020-07-03 59.99 11 32000
2020-07-31 59.99 11 34500
2020-07-04 59.99 19 35000
2020-07-04 59.99 5 28800
2020-07-04 59.99 17 31000
2020-07-04 59.99 9 33000
2020-07-04 59.99 20 29900
2020-07-06 59.99 5 31000
2020-07-06 59.94 16 28800
2020-07-07 59.94 20 27900
2020-07-07 59.99 5 31000
2020-07-08 59.99 20 33800
2020-07-08 59.99 8 34500
2020-07-08 59.99 4 29800
2020-07-08 59.99 12 32800
2020-07-09 59.8 13 32000
2020-07-09 59.99 16 31500
2020-06-01 59.99 13 28000
2020-06-01 59.99 17 30500
2020-06-10 59.99 5 28500
2020-06-11 59.99 20 29000
2020-06-11 59.99 17 30000
2020-06-11 59.99 1 24700
2020-06-11 59.99 6 29800
2020-06-11 59.99 7 28900
2020-06-12 59.99 12 31000
2020-06-12 59.99 13 29700
2020-06-12 59.94 5 28000
2020-06-15 59.99 2 26800
2020-06-15 59.99 4 29500
2020-06-15 59.99 10 31500
2020-06-16 59.8 5 29000
2020-06-16 59.99 15 29950
2020-06-16 59.99 12 33000
2020-06-16 59.99 3 28900
2020-06-16 59.99 18 28900
2020-06-16 59.99 14 31000
2020-06-16 59.99 16 31000
2020-06-16 59.99 12 31500
2020-06-16 59.99 19 28500
2020-06-16 59.99 16 31000
2020-06-16 59.99 8 30500
2020-06-17 59.99 9 31500
2020-06-17 59.99 16 29000
2020-06-17 59.99 8 32000
2020-06-17 59.99 9 30000
2020-06-17 59.99 18 29800
2020-06-17 59.99 9 29000
2020-06-17 59.99 10 27800
2020-06-18 59.99 20 31900
2020-06-18 59.99 7 32500
2020-06-18 59.99 5 27800
2020-06-18 59.99 2 27000
2020-06-19 59.8 9 29800
2020-06-19 59.99 10 29800
2020-06-02 59.8 7 28800
2020-06-02 59.99 18 27800
2020-06-20 59.99 10 32500
2020-06-20 59.94 19 29000
2020-06-23 59.99 5 30000
2020-06-24 59.99 3 29700
2020-06-25 59.8 8 29700
2020-06-25 59.99 3 31000
2020-06-25 59.99 6 31500
2020-06-25 59.99 13 30000
2020-06-26 59.99 11 29000
2020-06-29 59.8 10 29500
2020-06-29 59.99 5 28000
2020-06-30 59.99 5 33000
2020-06-30 59.99 5 29900
2020-06-05 59.99 4 27600
2020-06-06 59.99 19 33000
2020-06-06 59.99 14 30500
2020-06-06 59.99 15 31000
2020-06-06 59.99 5 28400
2020-06-06 59.99 12 28000
2020-06-08 59.99 16 32500
2020-06-08 59.99 16 29500
2020-06-09 59.99 12 32700
2020-06-09 59.99 18 30800
2020-05-01 59.99 18 28700
2020-05-12 59.99 9 29500
2020-05-15 59.99 10 28800
2020-05-16 59.99 13 29400
2020-05-18 59.99 5 29800
2020-05-02 59.99 14 27400
2020-05-21 59.94 11 25500
2020-05-22 59.99 4 28000
2020-05-27 59.99 13 28600
2020-05-28 59.99 9 26900
2020-05-29 59.99 20 27350
2020-05-30 59.99 20 27500
2020-05-30 59.99 17 27000
2020-05-30 59.99 12 30900
2020-05-30 59.99 7 28000
2020-05-30 59.99 13 26800
2020-05-30 59.99 13 32500
2020-05-05 59.99 9 33000
2020-05-05 59.99 7 29800
2020-05-08 59.8 3 28000
2020-04-10 59.99 7 26100
2020-04-15 59.8 4 29500
2020-04-17 59.99 7 26000
2020-04-20 59.99 9 27500
2020-04-21 59.99 4 27000
2020-04-22 59.99 2 26800
2020-04-27 59.94 10 28000
2020-04-27 59.99 8 29900
2020-04-27 59.99 16 29000
2020-04-28 59.99 5 29300
2020-04-28 59.99 4 27000
2020-04-28 59.99 15 31400
2020-04-04 59.99 12 29500
2020-04-04 59.99 4 28200
2020-04-09 59.99 8 32500
2020-03-10 59.99 2 29700
2020-03-10 59.99 1 23600
2020-03-10 59.99 1 18900
2020-03-12 59.99 4 30000
2020-03-12 59.99 4 23650
2020-03-17 59.8 13 26000
2020-03-17 59.99 12 30300
2020-03-19 59.99 5 29900
2020-03-02 59.8 3 28000
2020-03-02 59.99 6 24500
2020-03-02 59.99 14 29000
2020-03-21 59.99 18 28000
2020-03-23 59.99 1 21500
2020-03-04 59.8 15 23500
2020-03-07 59.99 3 29000
2020-03-09 59.99 12 29850
2020-02-01 59.99 3 28000
2020-02-01 59.99 17 26000
2020-02-01 59.99 12 30000
2020-02-01 59.99 17 29000
2020-02-01 59.99 11 24000
2020-02-01 59.99 17 27500
2020-02-01 59.99 5 24500
2020-02-01 59.94 12 25000
2020-02-01 59.99 18 29000
2020-02-01 59.99 9 26800
2020-02-10 59.99 7 30000
2020-02-10 59.99 14 30000
2020-02-10 59.99 6 29300
2020-02-10 59.99 4 26000
2020-02-10 59.99 8 28000
2020-02-10 59.99 12 30000
2020-02-10 59.94 6 25000
2020-02-11 59.99 20 26700
2020-02-11 59.99 18 26200
2020-02-11 59.99 17 28300
2020-02-11 59.99 10 25700
2020-02-11 59.99 11 27800
2020-02-11 59.99 10 26000
2020-02-12 59.99 11 30500
2020-02-12 59.99 5 29000
2020-02-12 59.99 17 29000
2020-02-12 59.99 5 28300
2020-02-13 59.99 5 30000
2020-02-13 59.99 3 27500
2020-02-13 59.99 17 26000
2020-02-13 59.99 19 29300
2020-02-13 59.99 18 29500
2020-02-13 59.99 7 27000
2020-02-13 59.99 4 28000
2020-02-13 59.99 5 27000
2020-02-15 59.8 1 23500
2020-02-15 59.99 9 33000
2020-02-15 59.99 13 31500
2020-02-15 59.99 18 29700
2020-02-15 59.99 2 25500
2020-02-15 59.99 11 29000
2020-02-15 59.99 10 28000
2020-02-15 59.99 17 28800
2020-02-17 59.99 15 28500
2020-02-17 59.99 12 26000
2020-02-18 59.99 18 27000
2020-02-18 59.99 7 28000
2020-02-18 59.99 17 29000
2020-02-18 59.99 3 25200
2020-02-18 59.94 19 29500
2020-02-18 59.99 16 30000
2020-02-18 59.99 16 29000
2020-02-18 59.99 19 28500
2020-02-19 59.99 6 29900
2020-02-19 59.99 11 30000
2020-02-19 59.99 12 31500
2020-02-19 59.99 6 30500
2020-02-19 59.99 8 29500
2020-02-19 59.99 9 23000
2020-02-19 59.99 15 26850
2020-02-19 59.99 3 24500
2020-02-19 59.99 7 27000
2020-02-19 59.99 16 27800
2020-02-19 59.99 18 26500
2020-02-19 59.99 6 29000
2020-02-19 59.99 15 27500
2020-02-20 59.99 15 26000
2020-02-20 59.99 4 28500
2020-02-21 59.99 14 29700
2020-02-24 59.94 15 25000
2020-02-25 59.99 18 28000
2020-02-25 59.99 8 28900
2020-02-27 59.99 13 32000
2020-02-28 59.99 15 27000
2020-02-28 59.99 15 30000
2020-02-29 59.99 3 27000
2020-02-29 59.99 4 28200
2020-02-29 59.99 7 27800
2020-02-29 59.99 12 27200
2020-02-29 59.99 9 32000
2020-02-03 59.99 16 28000
2020-02-03 59.99 20 25000
2020-02-03 59.99 13 29000
2020-02-03 59.99 1 20000
2020-02-03 59.99 18 30000
2020-02-04 59.8 3 23000
2020-02-04 59.99 3 25500
2020-02-04 59.99 3 29000
2020-02-04 59.94 12 24500
2020-02-04 59.99 5 27400
2020-02-04 59.99 20 24000
2020-02-05 59.99 12 29000
2020-02-05 59.99 13 27900
2020-02-06 59.99 7 30000
2020-02-06 59.99 4 25500
2020-02-06 59.99 2 24000
2020-02-07 59.99 20 27200
2020-02-07 59.94 5 25500
2020-01-10 59.99 7 24300
2020-01-10 59.99 4 24400
2020-01-10 59.99 5 25000
2020-01-10 59.94 16 21800
2020-01-10 59.99 20 22500
2020-01-10 59.99 11 25900
2020-01-13 59.8 13 23000
2020-01-13 59.99 16 26500
2020-01-13 59.99 15 23700
2020-01-13 59.99 19 25800
2020-01-14 59.99 13 24700
2020-01-14 59.99 12 23400
2020-01-14 59.99 12 24500
2020-01-15 59.99 7 25000
2020-01-15 59.99 18 23500
2020-01-15 59.99 17 27000
2020-01-16 59.8 10 25000
2020-01-16 59.99 6 24000
2020-01-17 59.99 11 25800
2020-01-17 59.99 15 25500
2020-01-17 59.99 14 22900
2020-01-18 59.99 1 21000
2020-01-18 59.99 18 26500
2020-01-18 59.99 10 22500
2020-01-18 59.99 5 23500
2020-01-18 59.99 6 23500
2020-01-02 59.99 6 25700
2020-01-02 59.99 11 26000
2020-01-02 59.99 8 26200
2020-01-02 59.99 15 23600
2020-01-02 59.99 20 21500
2020-01-20 59.99 15 26000
2020-01-20 59.99 5 24000
2020-01-20 59.99 15 26000
2020-01-20 59.99 13 25000
2020-01-20 59.99 4 26000
2020-01-20 59.99 12 25400
2020-01-20 59.99 10 23400
2020-01-21 59.99 14 26000
2020-01-21 59.99 5 23000
2020-01-21 59.99 3 25000
2020-01-21 59.99 18 25000
2020-01-22 59.99 8 26000
2020-01-22 59.99 5 24000
2020-01-22 59.99 5 23000
2020-01-22 59.99 17 26000
2020-01-22 59.99 20 23500
2020-01-22 59.99 9 26500
2020-01-23 59.99 11 27500
2020-01-23 59.99 7 25500
2020-01-23 59.99 18 22000
2020-01-23 59.99 1 20900
2020-01-28 59.99 12 25900
2020-01-28 59.99 8 26000
2020-01-28 59.99 7 24000
2020-01-28 59.99 11 24500
2020-01-28 59.99 10 26500
2020-01-28 59.99 2 22500
2020-01-29 59.99 3 29600
2020-01-29 59.99 9 26300
2020-01-29 59.99 7 24800
2020-01-29 59.99 12 27500
2020-01-29 59.99 19 26000
2020-01-29 59.99 14 24000
2020-01-03 59.8 8 22400
2020-01-03 59.99 11 23700
2020-01-03 59.99 11 23700
2020-01-30 59.99 9 30000
2020-01-30 59.99 15 21000
2020-01-30 59.99 3 24900
2020-01-30 59.99 18 26000
2020-01-30 59.99 7 24000
2020-01-31 59.99 18 25000
2020-01-31 59.99 1 24000
2020-01-31 59.99 2 22500
2020-01-31 59.99 18 25950
2020-01-31 59.99 4 25000
2020-01-04 59.99 10 22900
2020-01-04 59.99 2 22000
2020-01-04 59.99 16 24500
2020-01-07 59.99 6 25800
2020-01-08 59.99 14 26000
2020-01-08 59.99 20 24500
2020-01-09 59.99 13 26400
2020-01-09 59.99 4 22400
2019-12-11 59.99 13 23500
2019-12-11 59.94 16 21000
2019-12-12 59.99 13 24900
2019-12-13 59.99 17 25800
2019-12-13 59.8 10 23000
2019-12-13 59.99 8 24500
2019-12-13 59.99 19 24700
2019-12-16 59.99 9 23500
2019-12-17 59.99 5 24800
2019-12-17 59.99 8 23000
2019-12-17 59.99 1 20000
2019-12-18 59.8 14 23400
2019-12-18 59.99 2 22000
2019-12-19 59.99 1 21000
2019-12-19 59.99 7 22700
2019-12-02 59.99 8 22600
2019-12-21 59.8 11 23900
2019-12-21 59.99 19 22250
2019-12-21 59.99 7 23500
2019-12-21 59.99 11 24600
2019-12-21 59.99 13 23300
2019-12-23 59.99 15 24000
2019-12-24 59.99 3 20400
2019-12-24 59.99 6 21100
2019-12-24 59.94 10 20900
2019-12-25 59.8 13 23000
2019-12-26 59.99 3 23000
2019-12-26 59.99 3 21000
2019-12-26 59.99 8 24500
2019-12-27 59.99 1 20100
2019-12-27 59.99 2 23000
2019-12-27 59.99 18 23000
2019-12-03 59.99 12 23750
2019-12-30 59.99 5 23500
2019-12-31 59.99 7 24500
2019-12-31 59.99 20 23500
2019-12-31 59.99 11 25800
2019-12-31 59.99 18 26000
2019-12-04 59.99 7 25600
2019-12-05 59.99 11 21500
2019-12-06 59.99 18 24450
2019-12-07 59.99 12 24000
2019-12-07 59.99 14 24300
2019-12-09 59.99 18 25000
2019-12-09 59.99 5 23100
2019-11-11 59.94 16 21000
2019-11-12 59.99 8 21000
2019-11-13 59.99 7 21000
2019-11-19 59.8 2 21000
2019-11-02 59.99 15 23200
2019-11-02 59.99 6 23500
2019-11-02 59.99 2 20200
2019-11-20 59.8 9 22400
2019-11-20 59.99 6 24500
2019-11-21 59.99 11 23400
2019-11-21 59.99 19 24000
2019-11-22 59.99 16 23500
2019-11-22 59.99 1 20500
2019-11-25 59.8 15 21200
2019-11-26 59.99 11 22750
2019-11-27 59.99 18 23600
2019-11-27 59.99 2 21000
2019-11-29 59.99 10 23900
2019-11-29 59.99 3 20500
2019-11-30 59.99 2 20300
2019-11-30 59.99 15 25500
2019-11-30 59.99 12 24500
2019-11-30 59.99 4 22000
2019-11-30 59.99 11 22400
2019-11-04 59.99 8 21800
2019-10-01 59.99 14 22950
2019-10-10 59.99 12 25900
2019-10-14 59.99 17 22000
2019-10-14 59.99 10 22400
2019-10-16 59.99 6 24200
2019-10-16 59.99 4 23300
2019-10-17 59.99 17 23800
2019-10-22 59.99 17 23500
2019-10-24 59.94 12 21700
2019-10-03 59.99 3 20500
2019-10-07 59.99 17 20500
2019-10-09 59.99 14 25800






경기도 수원시 권선구 동수원로145번길 24, 210동 11층1102호 (권선동,수원아이파크시티2단지) [집합건물 철근콘크리트구조 148.982㎡]

항목
경매번호 2020타경2105
경매날짜 2020.10.27
법원 수원지방법원
담당 경매2계
감정평가금액 742,000,000
경매가 742,000,000(100%)
유찰여부 신건

  • 대지권 미등기이나 최저매각가격에 대지권가격이 포함되었으며 소유자가 대지 지분에 대해 분양대금을 모두 납부한 것으로 보임.(신청채권자가 제출한 공급계약서 참조함)

<최근 1년 실거래가 정보>
- 총 거래 수: 140건
- 동일 평수 거래 수: 10건
최근 1년 동일 평수 거래건 보기

날짜 전용면적 가격
2020-08-25 148.982 13 82000
2020-07-09 148.982 3 75000
2020-06-12 148.982 6 75000
2020-06-12 148.982 5 75000
2020-04-18 148.982 3 65000
2020-02-07 148.982 8 69000
2019-12-10 148.982 12 69000
2019-12-16 148.982 10 64700
2019-12-21 148.982 13 67000
2019-10-11 148.982 12 59900






경기도 수원시 영통구 매영로310번길 12, 541동 2층201호 (영통동,쌍용아파트) [집합건물 철근콘크리트 벽식구조 59.965㎡]

항목
경매번호 2020타경178,2020타경57228(중복)
경매날짜 2020.11.05
법원 수원지방법원
담당 경매3계
감정평가금액 366,000,000
경매가 366,000,000(100%)
유찰여부 신건


<최근 1년 실거래가 정보>
- 총 거래 수: 255건
- 동일 평수 거래 수: 255건
최근 1년 동일 평수 거래건 보기

날짜 전용면적 가격
2020-10-23 59.965 7 36000
2020-10-12 59.965 2 29200
2020-10-22 59.965 18 29200
2020-09-21 59.965 11 40000
2020-09-23 59.965 6 39000
2020-09-12 59.965 15 37500
2020-09-14 59.965 12 36000
2020-09-18 59.965 9 38300
2020-09-17 59.965 4 39000
2020-08-13 59.965 13 36000
2020-08-21 59.965 3 38500
2020-08-25 59.965 4 38800
2020-07-02 59.965 11 39000
2020-07-02 59.965 18 23000
2020-07-30 59.965 4 37000
2020-07-13 59.965 15 38300
2020-07-03 59.965 7 37900
2020-07-23 59.965 5 36900
2020-06-10 59.965 9 37500
2020-06-20 59.965 4 37500
2020-06-16 59.965 6 37800
2020-06-15 59.965 13 36500
2020-06-26 59.965 12 39800
2020-06-15 59.965 14 37500
2020-06-29 59.965 9 38400
2020-05-02 59.965 11 34700
2020-05-28 59.965 6 36400
2020-05-30 59.965 19 43000
2020-05-15 59.965 12 33200
2020-05-16 59.965 12 32000
2020-05-02 59.965 2 29900
2020-05-24 59.965 20 36000
2020-05-27 59.965 6 32000
2020-05-05 59.965 3 32000
2020-05-06 59.965 10 34000
2020-05-01 59.965 14 31500
2020-05-05 59.965 3 32000
2020-05-08 59.965 8 33800
2020-05-12 59.965 16 33000
2020-05-16 59.965 12 33500
2020-05-21 59.965 13 35500
2020-05-30 59.965 5 35000
2020-05-30 59.965 5 34000
2020-04-17 59.965 1 26000
2020-04-29 59.965 1 28500
2020-04-22 59.965 19 34000
2020-04-30 59.965 13 31900
2020-04-30 59.965 7 33000
2020-04-08 59.965 5 28400
2020-04-09 59.965 17 31500
2020-04-16 59.965 4 31600
2020-04-16 59.965 16 32000
2020-04-17 59.965 6 32300
2020-04-30 59.965 16 33500
2020-04-08 59.965 14 32700
2020-04-02 59.965 15 33000
2020-04-22 59.965 3 30600
2020-04-27 59.965 15 33000
2020-03-02 59.965 5 30000
2020-03-20 59.965 18 28500
2020-03-23 59.965 7 31000
2020-03-09 59.965 5 28600
2020-03-23 59.965 2 29700
2020-03-09 59.965 13 29200
2020-03-09 59.965 15 29200
2020-03-12 59.965 9 32000
2020-03-21 59.965 19 29500
2020-02-01 59.965 15 29000
2020-02-10 59.965 2 26000
2020-02-10 59.965 12 29000
2020-02-12 59.965 13 31800
2020-02-13 59.965 1 26000
2020-02-15 59.965 19 31500
2020-02-15 59.965 7 32000
2020-02-15 59.965 4 32000
2020-02-17 59.965 12 32700
2020-02-01 59.965 4 24800
2020-02-01 59.965 14 30500
2020-02-10 59.965 14 35500
2020-02-13 59.965 15 31500
2020-02-15 59.965 7 28600
2020-02-15 59.965 12 32000
2020-02-17 59.965 4 30500
2020-02-20 59.965 11 28000
2020-02-26 59.965 10 30700
2020-02-03 59.965 10 30600
2020-02-06 59.965 5 31000
2020-02-07 59.965 15 31000
2020-02-14 59.965 4 30600
2020-02-15 59.965 19 32800
2020-02-17 59.965 11 29500
2020-02-21 59.965 11 32400
2020-02-04 59.965 16 26500
2020-02-10 59.965 1 25000
2020-02-15 59.965 16 32000
2020-02-17 59.965 10 32800
2020-02-18 59.965 14 32000
2020-02-21 59.965 11 32000
2020-02-24 59.965 12 32800
2020-02-29 59.965 9 31500
2020-02-04 59.965 1 25500
2020-02-05 59.965 17 28000
2020-01-13 59.965 4 26500
2020-01-16 59.965 13 30000
2020-01-17 59.965 11 30750
2020-01-22 59.965 16 30700
2020-01-22 59.965 15 29000
2020-01-28 59.965 6 29000
2020-01-31 59.965 18 31000
2020-01-09 59.965 8 30000
2020-01-09 59.965 8 29300
2020-01-14 59.965 4 27000
2020-01-30 59.965 7 30000
2020-01-04 59.965 8 29500
2020-01-08 59.965 1 23000
2020-01-10 59.965 12 29800
2020-01-16 59.965 9 28950
2020-01-20 59.965 8 30000
2020-01-06 59.965 7 28500
2020-01-06 59.965 6 28500
2020-01-06 59.965 7 28500
2020-01-09 59.965 2 26000
2020-01-11 59.965 9 28500
2020-01-11 59.965 15 30300
2020-01-11 59.965 14 29800
2020-01-17 59.965 8 29000
2020-01-06 59.965 5 25500
2020-01-06 59.965 18 28400
2020-01-07 59.965 8 28000
2020-01-09 59.965 13 29700
2019-12-18 59.965 1 24000
2019-12-19 59.965 18 29000
2019-12-21 59.965 14 28400
2019-12-23 59.965 11 28400
2019-12-23 59.965 6 28000
2019-12-23 59.965 14 28700
2019-12-24 59.965 9 29500
2019-12-05 59.965 13 24500
2019-12-07 59.965 1 22000
2019-12-09 59.965 18 26400
2019-12-10 59.965 18 28500
2019-12-16 59.965 1 26500
2019-12-16 59.965 1 25800
2019-12-17 59.965 1 25000
2019-12-19 59.965 8 26700
2019-12-21 59.965 9 27000
2019-12-21 59.965 1 24000
2019-12-21 59.965 14 28000
2019-12-24 59.965 12 28000
2019-12-03 59.965 3 24000
2019-12-30 59.965 3 28000
2019-12-30 59.965 11 29000
2019-12-04 59.965 11 26000
2019-12-04 59.965 7 25400
2019-12-06 59.965 7 26000
2019-12-09 59.965 6 26500
2019-12-10 59.965 6 27000
2019-12-10 59.965 11 27000
2019-12-11 59.965 13 26500
2019-12-11 59.965 15 27500
2019-12-12 59.965 1 23000
2019-12-13 59.965 11 27000
2019-12-16 59.965 16 26500
2019-12-16 59.965 8 27150
2019-12-20 59.965 16 26600
2019-12-20 59.965 10 26500
2019-12-21 59.965 13 26700
2019-12-25 59.965 9 23000
2019-12-26 59.965 14 28500
2019-12-03 59.965 9 26000
2019-12-04 59.965 15 27000
2019-12-05 59.965 8 25000
2019-12-11 59.965 5 24500
2019-12-16 59.965 5 26500
2019-12-19 59.965 17 29500
2019-12-20 59.965 15 28700
2019-12-24 59.965 6 26200
2019-12-30 59.965 14 27000
2019-12-31 59.965 2 25300
2019-12-07 59.965 7 25400
2019-12-07 59.965 18 25300
2019-12-09 59.965 5 25000
2019-11-14 59.965 9 25000
2019-11-16 59.965 4 24800
2019-11-16 59.965 12 25500
2019-11-29 59.965 10 29400
2019-11-29 59.965 4 24000
2019-11-13 59.965 7 23000
2019-11-14 59.965 13 26000
2019-11-15 59.965 3 26000
2019-11-15 59.965 2 23800
2019-11-15 59.965 16 26500
2019-11-02 59.965 14 27300
2019-11-27 59.965 2 24000
2019-11-29 59.965 1 21300
2019-11-29 59.965 20 25300
2019-11-30 59.965 18 27000
2019-11-30 59.965 5 25700
2019-11-08 59.965 11 24500
2019-11-11 59.965 6 23500
2019-11-02 59.965 9 25000
2019-11-25 59.965 6 25000
2019-11-08 59.965 16 24600
2019-11-13 59.965 12 24400
2019-11-16 59.965 12 25500
2019-11-18 59.965 4 24000
2019-11-02 59.965 13 25000
2019-11-02 59.965 7 24000
2019-11-20 59.965 3 24000
2019-11-27 59.965 19 24500
2019-11-28 59.965 9 25500
2019-11-30 59.965 3 24000
2019-11-04 59.965 19 23000
2019-11-07 59.965 14 25500
2019-11-07 59.965 5 25000
2019-10-11 59.965 10 24000
2019-10-18 59.965 18 23500
2019-10-18 59.965 6 23800
2019-10-18 59.965 14 24200
2019-10-21 59.965 8 23500
2019-10-21 59.965 18 22400
2019-10-22 59.965 13 25300
2019-10-22 59.965 12 25000
2019-10-24 59.965 12 25600
2019-10-28 59.965 4 23800
2019-10-29 59.965 19 24000
2019-10-03 59.965 12 25000
2019-10-30 59.965 12 25000
2019-10-05 59.965 14 24500
2019-10-11 59.965 7 23500
2019-10-11 59.965 10 23800
2019-10-19 59.965 12 23000
2019-10-21 59.965 12 25200
2019-10-21 59.965 10 25000
2019-10-24 59.965 12 26000
2019-10-26 59.965 10 25000
2019-10-29 59.965 11 24800
2019-10-12 59.965 14 22200
2019-10-16 59.965 12 25900
2019-10-19 59.965 12 25000
2019-10-19 59.965 4 24500
2019-10-21 59.965 10 24400
2019-10-26 59.965 19 22800
2019-10-28 59.965 7 24000
2019-10-29 59.965 17 24000
2019-10-31 59.965 17 24000
2019-10-19 59.965 6 23000
2019-10-21 59.965 10 23000
2019-10-21 59.965 14 24500
2019-10-22 59.965 13 23000
2019-10-24 59.965 8 24500
2019-10-28 59.965 13 24500
2019-10-31 59.965 10 24700
2019-10-31 59.965 4 23000
2019-10-31 59.965 3 24300






경기도 수원시 권선구 동수원로145번길 23, 404동 13층1303호 (권선동,수원아이파크시티4단지) [집합건물 철근콘크리트구조 134.934㎡]

항목
경매번호 2019타경28729
경매날짜 2020.11.04
법원 수원지방법원
담당 경매6계
감정평가금액 611,000,000
경매가 611,000,000(100%)
유찰여부 신건


<최근 1년 실거래가 정보>
- 총 거래 수: 109건
- 동일 평수 거래 수: 5건
최근 1년 동일 평수 거래건 보기

날짜 전용면적 가격
2020-09-17 134.934 3 75000
2020-06-20 134.934 6 69900
2020-06-09 134.934 7 73000
2020-01-22 134.934 8 64500
2019-12-21 134.934 3 63000






경기도 수원시 권선구 상탑로21번길 7-8, 2층201호 (탑동,가림아파트) [집합건물 철근콘크리트조 77.19㎡]

항목
경매번호 2019타경27375
경매날짜 2020.10.29
법원 수원지방법원
담당 경매7계
감정평가금액 203,000,000
경매가 142,100,000(70%)
유찰여부 유찰\t1회


<최근 1년 실거래가 정보>
- 총 거래 수: 0건
- 동일 평수 거래 수: 0건




경기도 수원시 권선구 매곡로 68, 102동 7층706호 (금곡동,일신건영아파트) [집합건물 철근콘크리트벽식구조 84.93㎡]

항목
경매번호 2019타경26396
경매날짜 2020.11.05
법원 수원지방법원
담당 경매3계
감정평가금액 253,000,000
경매가 253,000,000(100%)
유찰여부 신건


<최근 1년 실거래가 정보>
- 총 거래 수: 15건
- 동일 평수 거래 수: 10건
최근 1년 동일 평수 거래건 보기

날짜 전용면적 가격
2020-10-08 84.93 5 30800
2020-08-17 84.93 11 29200
2020-07-18 84.93 3 29000
2020-07-27 84.93 12 33400
2020-07-28 84.93 1 27500
2020-06-19 84.93 9 32000
2020-01-16 84.93 9 28500
2020-01-23 84.93 8 32800
2019-12-25 84.93 5 24830
2019-11-09 84.93 18 25200






경기도 수원시 장안구 수성로394번길 39, 지하층103호 [집합건물 연와조 49.06㎡]

항목
경매번호 2019타경11615
경매날짜 2020.10.30
법원 수원지방법원
담당 경매9계
감정평가금액 72,000,000
경매가 72,000,000(100%)
유찰여부 유찰\t2회

  • 새매각임.

<최근 1년 실거래가 정보>
- 총 거래 수: 0건
- 동일 평수 거래 수: 0건




Rank Game Publisher
1 리니지2M NCSOFT
2 리니지M NCSOFT
3 Genshin Impact miHoYo Limited
4 바람의나라: 연 NEXON Company
5 기적의 검 4399 KOREA
6 R2M Webzen Inc.
7 KartRider Rush+ NEXON Company
8 V4 NEXON Company
9 뮤 아크엔젤 Webzen Inc.
10 리니지2 레볼루션 Netmarble
11 라이즈 오브 킹덤즈 LilithGames
12 블레이드&소울 레볼루션 Netmarble
13 A3: 스틸얼라이브 Netmarble
14 가디언 테일즈 Kakao Games Corp.
15 AFK 아레나 LilithGames
16 그랑삼국 YOUZU(SINGAPORE)PTE.LTD.
17 S.O.S:스테이트 오브 서바이벌 KingsGroup Holdings
18 라루나 판타지 Eskyfun Entertainment
19 슬램덩크 DeNA HONG KONG LIMITED
20 용비불패M NHN Corp.
21 라그나로크 오리진 GRAVITY Co., Ltd.
22 Roblox Roblox Corporation
23 스테리테일 4399 KOREA
24 Lords Mobile: Kingdom Wars IGG.COM
25 Empires & Puzzles: Epic Match 3 Small Giant Games
26 Age of Z Origins Camel Games Limited
27 Cookie Run: OvenBreak - Endless Running Platformer Devsisters Corporation
28 PUBG MOBILE PUBG CORPORATION
29 FIFA ONLINE 4 M by EA SPORTS™ NEXON Company
30 FIFA Mobile NEXON Company
31 일루전 커넥트 ChangYou
32 Epic Seven Smilegate Megaport
33 Gardenscapes Playrix
34 Pmang Poker : Casino Royal NEOWIZ corp
35 Rise of Empires: Ice and Fire Long Tech Network Limited
36 Brawl Stars Supercell
37 메이플스토리M NEXON Company
38 검은사막 모바일 PEARL ABYSS
39 마구마구 2020 Netmarble
40 Homescapes Playrix
41 황제라 칭하라 Clicktouch Co., Ltd.
42 페이트/그랜드 오더 Netmarble
43 한게임 포커 NHN BIGFOOT
44 컴투스프로야구2020 Com2uS
45 Summoners War Com2uS
46 달빛조각사 Kakao Games Corp.
47 궁3D WISH INTERACTIVE TECHNOLOGY LIMITED
48 Mafia City YOTTA GAMES PTE LTD
49 Gunship Battle Total Warfare JOYCITY Corp.
50 Random Dice: PvP Defense 111%

하나의 추가 문자로 Python 코드 작성 방식 변경

작은 구문 변경 하나, 코딩 기술을위한 하나의 큰 단계

5 월 23 일 · 최소 읽기
Image for post
~의 사진안젤리나 키추 코바의 위에Unsplash

구문 언어

공 구르기

별표는 어디에 있습니까?

Image for post
~의 사진이바나 카지나의 위에Unsplash
포장 풀기의 힘

다른 사람의 코드를 위반하지 마십시오

Image for post
~의 사진다니엘 타 피오르의 위에Unsplash

Args, Kwargs

작업 코드와 깨는 코드

요약하면

+ Recent posts