목록분류 전체보기 (373)
Silver Library (Archived)
Summary: Surely, not only for this purpose but using list with appropriate function and define it correctly, this grants you to design a calculator as well. Even calendar to furthermore. keyword: list, def, append, remove stackoverflow.com/questions/151199/how-to-calculate-number-of-days-between-two-given-dates How to calculate number of days between two given dates? If I have two dates (ex. '8/..
Problem. I had no idea why on earth I cannot upload my work through VScode terminal. git push origin master git push -u origin master None of them worked...why? Solution. You must pull your repository first as soon as you set this: 1. git remote add origin "your repository URL" 2. git pull origin master --allow-unrelated-histories Oh my god...Guess I have to use Github Desktop for this repositor..
Main Objective. 1. Delete all modified codes since last commit, and return all contions to the last commit point. Note: Use at your own risk. the option '--hard' will literally revert all your work to the point where you direct. IF YOU ARE NOT SURE WHAT'S GOING ON, DON'T DO IT! THIS COMMAND WILL DELETE SOME OF YOUR WORK. How? git reset --hard HEAD^1 WARNING: I HAVE NOT TRIED THIS WAY. Still, thi..
book.pythontips.com/en/latest/mutation.html 9. Mutation — Python Tips 0.1 documentation 9. Mutation The mutable and immutable datatypes in Python cause a lot of headache for new programmers. In simple words, mutable means ‘able to be changed’ and immutable means ‘constant’. Want your head to spin? Consider this example: foo = ['hi'] p book.pythontips.com wikidocs.net/15 위키독스 온라인 책을 제작 공유하는 플랫폼 서..