पायथन सूची बनाएं
उदाहरण
C:\Py3Project>howdoi create a python list
आउटपुट
उपरोक्त कोड को चलाने से हमें निम्नलिखित परिणाम मिलते हैं -
>>> l = [None] * 10 >>> l [None, None, None, None, None, None, None, None, None, None]
आज की तारीख प्रिंट करना
उदाहरण
c:\python3>howdoi print today's date in python
आउटपुट
उपरोक्त कोड को चलाने से हमें निम्नलिखित परिणाम मिलते हैं -
for date in mylist : print str(date)
उदाहरण
c:\python3>howdoi create fibonnaci series in python
आउटपुट
उपरोक्त कोड को चलाने से हमें निम्नलिखित परिणाम मिलते हैं -
def F(n): if n == 0: return 0 elif n == 1: return 1 else: return F(n-1)+F(n-2)
उदाहरण
c:\python3>howdoi use calendar in javascript
आउटपुट
उपरोक्त कोड को चलाने से हमें निम्नलिखित परिणाम मिलते हैं -
You can choose from Material UI. https://www.material-ui.com/#/components/date-picker https://www.material-ui.com/#/components/time-picker
उदाहरण
c:\python3>howdoi go to north pole
आउटपुट
उपरोक्त कोड को चलाने से हमें निम्नलिखित परिणाम मिलते हैं -
I believe the difference is because GPS uses the geographical North/South Pole rather than the magnetic ones. The further north you are, the bigger the difference is to where you are. The GPS satellite positions need to be absolute, and using a fluctuating point of reference like the magnetic poles is a big no-no.