목록Personal DB (108)
Silver Library (Archived)
Python Conditions Python If ... Else Python Conditions and If statements Python supports the usual logical conditions from mathematics: Equals: a == b Not Equals: a != b Less than: a = b Thes www.w3schools.com
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..
![](http://i1.daumcdn.net/thumb/C150x150.fwebp.q85/?fname=https://blog.kakaocdn.net/dn/cxmglw/btqYbJfkKT2/sNIxEMk855KKYa0h1AUX7K/img.jpg)
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..