Anonymní profil peter – Programujte.com
 x   TIP: Přetáhni ikonu na hlavní panel pro připnutí webu

Anonymní profil peter – Programujte.comAnonymní profil peter – Programujte.com

 

Příspěvky odeslané z IP adresy 2001:718:2601:258:b847:9eb4:9fb0:b82d...–

peter
Java › Ternary operator
26. 1. 2022   #389748

   

url = url.startsWith("http") ? url : addHttp(url);

if (url.startsWith("http"))
   {
   url = url;
   }
else
   {
   url = addHttp(url);
   }
peter
Python › Promenna z promenne string
26. 1. 2022   #389744

Super, no, zas mi to pulku zpravy smazalo... No, mas to vse v tech odkaze, vyberu ti jen jednu variantu, teda, snad prave to hledas. 

introduction = 'My name is {first_name} {middle_name} {last_name} AKA the {aka}.'
full_name = {
    'first_name': 'Tony',
    'middle_name': 'Howard',
    'last_name': 'Stark',
    'aka': 'Iron Man',
}
 
# Notice the use of "**" operator to unpack the values.
print(introduction.format(**full_name))
peter
Python › Promenna z promenne string
26. 1. 2022   #389743

https://www.onlinegdb.com/online_python_compiler
Tvuj python kod mi tam hlasi nejake errory. Nejsem v py tak dobry, abych dokazal zjistit, kde vsude v tom mas chyby. A take nerozumim tve otazce. Co je vstup. Co se pokousis s tim delat. A jaky by mel byt vystup? Ani si nedokazi tipnout verzi pythonu. V kazde se neco dela jinak nez v te predchozi a tudiz kody na netu nemusi fungovat v nejnovejsi verzi nebo naopak ve starsi.

Tipnu si.
google = python string replace all
https://www.geeksforgeeks.org/…eplace/ ;

# Python3 program to demonstrate the
# use of replace() method 
 
string = "geeks for geeks geeks geeks geeks"
  
# Prints the string by replacing all
# geeks by Geeks
print(string.replace("geeks", "Geeks"))
 
# Prints the string by replacing only
# 3 occurrence of Geeks 
print(string.replace("geeks", "GeeksforGeeks", 3))

https://stackoverflow.com/questions/3588361/how-do-you-replace-all-the-occurrences-of-a-certain-character-in-a-string 

>>> input_given="join smith 25"
>>> chars="".join([i for i in input_given if not i.isdigit()])
>>> age=input_given.translate(None,chars)
>>> age
'25'
>>> name=input_given.replace(age,"").strip()
>>> name
'join smith'

google = python format example
https://www.geeksforgeeks.org/…rmat-method/

 

 

Hostujeme u Českého hostingu       ISSN 1801-1586       ⇡ Nahoru Webtea.cz logo © 20032024 Programujte.com
Zasadilo a pěstuje Webtea.cz, šéfredaktor Lukáš Churý