#pythontipqkm risultati di ricerca
#Python if(False != True): print("Is it False or True ?") #pythontipQKM
#python Posted about a HTTP REST API Dev in Go I was asked to try a Python solution as I know that a bit better :-) Got the below for trials tests..Awesome quick test Check it out👇 jsonplaceholder.typicode.com (Really helped. Try it for yours) #pythontipQKM #coding #code #test
#python Define code block to be executed when... Python file is run as the main program Do this by 👇 if __name__ = "__main__": Intrepreter would set this variable __name__ which we compare #pythontipQKM
Try the combinations package as here: 👇 from itertools import combinations fruits_to_buy = ['Mango','Apple','Guava','Chikoo','Jackfruit'] print(list(combinations(fruits_to_buy,2))) Python rocks! #python #pythontipQKM
#python: What is the output ? if(False|2!=3): print("Hey, what is this ?") #pythontipQKM #code #coding #programmer #programming #softwaredevelopment #SoftwareEngineering
#python Groups_students = {'Mechanical':160,'EcE':188,'Civil':140,'CS':224} Write the code to print the branch having most students ppl in India know most would be running to CS 😃 #pythontipQKM #code #coding #programming #softwaredeveloper #softwaredevelopment #coder
#python: Remove duplicates 👇 (Bring it into a set form) lst = [1,2,2,3,4,5,3] print(set(lst)) #pythontipQKM #programming #code #CodeNewbie #softwaredevelopment
Q from a year back: #Python More pythonistas from n/wk now I guess.. # Write here what this program does word = 'Pythonista' d=dict() for c in word: if c not in d: d[c] = 1 else: d[c] += 1 print(d) #pythontipQKM #code #coding
#python Mathematical functions for complex numbers: 👇 Deal with this by importing cmath What does Python not have ? Life sure is made easy #pythontipQKM #code #CodeNewbie #programming #softwaredevelopment #100DaysOfCode #100Devs #100daysofpythonchallenge #100DaysofPython
#python: You can call methods in succession: Example:👇 language="python" print(language.capitalize().upper()) Capitalizing first character and then result is converted to uppercase Will see a lot in string manip operations #pythontipQKM #programming #CodeNewbie #code
#python Simple Python Package: 👇 ▶️Try the translation & share the limitations! from translate import Translator translator=Translator(from_lang="english",to_lang="french") translation = translator.translate("Good Morning") print (translation) Translate away.. #PythontipQKM
Summer is too hot, especially here in India Fruits are a life saver Just have money for only 2 from what I see 👇 ['Mango','Apple','Guava','Chikoo','Jackfruit'] What are the options ? Use Python to the rescue 😃 Share your answer #python #pythontipQKM #pythonprogramming
#python: Syntactically, Ok with or without semicolon; Why would someone want a semicolon though ? :-) #pythontipQKM #CodeNewbie #code
#python What error can I choose here ? def valid_user_input(x): try: return int(x) > 2 except: #?Error return False valid_user_input(input("Enter Number: ")) #pythontipQKM #programming #CodeNewbie #code
Problem: Admin has entered paragraphs with words seperated by many spaces even when told to enter only one space b between words How can we correct it #by Python program ? :-) #python #pythontipQKM #code #Coding #programming #CodeNewbie
Try the re package in python ✅import re Pattern match & extract utilities: findall, one such Had some examples in prior tweets Ex: Vowels, capitals, digits whatever ✅Pattern match & extract Gets into a list form allowing easy manipulation #python #pythontipQKM #code
#python Date Manipulation comes in handy You can print it, append to log files and much more for any needed appl processing ... #ex: from datetime import datetime date_today = datetime.now().strftime("%d-%m-%Y") print(date_today) #pythontipQKM #programming #code
Dear all: As posted earlier, am building mini apps Small utilities that can help showcase to employer, for fresher' mainly Do share views Check 👇 #LinuxtipQKM #pythontipQKM #CtipQKM Interviewing, Last mile support it is: Next: Rust, Go, AWS Join in. Suggestions welcome
#python Groups_students = {'Mechanical':160,'EcE':188,'Civil':140,'CS':224} Write the code to print the branch having most students ppl in India know most would be running to CS 😃 #pythontipQKM #code #coding #programming #softwaredeveloper #softwaredevelopment #coder
Try the combinations package as here: 👇 from itertools import combinations fruits_to_buy = ['Mango','Apple','Guava','Chikoo','Jackfruit'] print(list(combinations(fruits_to_buy,2))) Python rocks! #python #pythontipQKM
Dear all: As posted earlier, am building mini apps Small utilities that can help showcase to employer, for fresher' mainly Do share views Check 👇 #LinuxtipQKM #pythontipQKM #CtipQKM Interviewing, Last mile support it is: Next: Rust, Go, AWS Join in. Suggestions welcome
Summer is too hot, especially here in India Fruits are a life saver Just have money for only 2 from what I see 👇 ['Mango','Apple','Guava','Chikoo','Jackfruit'] What are the options ? Use Python to the rescue 😃 Share your answer #python #pythontipQKM #pythonprogramming
#python Posted about a HTTP REST API Dev in Go I was asked to try a Python solution as I know that a bit better :-) Got the below for trials tests..Awesome quick test Check it out👇 jsonplaceholder.typicode.com (Really helped. Try it for yours) #pythontipQKM #coding #code #test
Q from a year back: #Python More pythonistas from n/wk now I guess.. # Write here what this program does word = 'Pythonista' d=dict() for c in word: if c not in d: d[c] = 1 else: d[c] += 1 print(d) #pythontipQKM #code #coding
#python Simple Python Package: 👇 ▶️Try the translation & share the limitations! from translate import Translator translator=Translator(from_lang="english",to_lang="french") translation = translator.translate("Good Morning") print (translation) Translate away.. #PythontipQKM
#python Date Manipulation comes in handy You can print it, append to log files and much more for any needed appl processing ... #ex: from datetime import datetime date_today = datetime.now().strftime("%d-%m-%Y") print(date_today) #pythontipQKM #programming #code
Problem: Admin has entered paragraphs with words seperated by many spaces even when told to enter only one space b between words How can we correct it #by Python program ? :-) #python #pythontipQKM #code #Coding #programming #CodeNewbie
#Python if(False != True): print("Is it False or True ?") #pythontipQKM
#python Mathematical functions for complex numbers: 👇 Deal with this by importing cmath What does Python not have ? Life sure is made easy #pythontipQKM #code #CodeNewbie #programming #softwaredevelopment #100DaysOfCode #100Devs #100daysofpythonchallenge #100DaysofPython
#python Define code block to be executed when... Python file is run as the main program Do this by 👇 if __name__ = "__main__": Intrepreter would set this variable __name__ which we compare #pythontipQKM
#python: What is the output ? if(False|2!=3): print("Hey, what is this ?") #pythontipQKM #code #coding #programmer #programming #softwaredevelopment #SoftwareEngineering
#python: You can call methods in succession: Example:👇 language="python" print(language.capitalize().upper()) Capitalizing first character and then result is converted to uppercase Will see a lot in string manip operations #pythontipQKM #programming #CodeNewbie #code
#python What error can I choose here ? def valid_user_input(x): try: return int(x) > 2 except: #?Error return False valid_user_input(input("Enter Number: ")) #pythontipQKM #programming #CodeNewbie #code
#python: Syntactically, Ok with or without semicolon; Why would someone want a semicolon though ? :-) #pythontipQKM #CodeNewbie #code
#python: Remove duplicates 👇 (Bring it into a set form) lst = [1,2,2,3,4,5,3] print(set(lst)) #pythontipQKM #programming #code #CodeNewbie #softwaredevelopment
Try the re package in python ✅import re Pattern match & extract utilities: findall, one such Had some examples in prior tweets Ex: Vowels, capitals, digits whatever ✅Pattern match & extract Gets into a list form allowing easy manipulation #python #pythontipQKM #code
#python Strings are immutable in Python: See what we do to make the first char uppercase 👇 Love the slicing too! Slice away :-) str1='python' print(str1[0].upper()+str1[1:]) #pythontipQKM
String Ops is fundamental Ask Python Check out slicing if not already👇 #justforfun.. Need to extract decimal value of a 2 digit num # Go from 2nd Index to end.. print("Learn Strings") price="24.3" print(price[2:]) Did you have a slice of it :-) #python #pythontipQKM
Leetcode is good Not all companies ask it though. A small percentage only An example asked by a dev friend (coderbyte: agecounting pblm) json is asked in some form helps in interviews Wrote this code (Using the suggested requests method) #pythontipQKM #python #Interview
                                            #python #pythontipQKM Teaching 7th-12th Graders Python Students doing plotting Graphs, Linear Equation Fresher', anyone can use this simple example (Numpy,Matplotlib). Simple code. Just displayed value of tools python provides Never sell yourself short in Interviews
                                            Something went wrong.
Something went wrong.
United States Trends
- 1. Cheney 107K posts
 - 2. Election Day 116K posts
 - 3. Logan Wilson 7,330 posts
 - 4. #csm219 1,808 posts
 - 5. Mamdani 557K posts
 - 6. Shota 16.4K posts
 - 7. GO VOTE 91.2K posts
 - 8. New Jersey 196K posts
 - 9. Cuomo 262K posts
 - 10. Iraq 55.4K posts
 - 11. New Yorkers 81K posts
 - 12. #tuesdayvibe 2,355 posts
 - 13. Good Tuesday 39.1K posts
 - 14. Virginia 185K posts
 - 15. Taco Tuesday 11.9K posts
 - 16. Rolex 17.8K posts
 - 17. No ID 63.2K posts
 - 18. Rickey 1,904 posts
 - 19. Halliburton 4,801 posts
 - 20. Chester County 13.6K posts