Questions tagged [pth]
18 questions
0
votes
0 answers
Can't CSS select last (or first) word
I need to CSS select the last word. Tried ::nth-last-word and ::last-word - dosent do anything at all.
.site-title a {
font-size: 30px;
}
.site-title a::last-word {
color: #c73434;
}

Alexey Tseitlin
- 1,031
- 4
- 14
- 33
-1
votes
2 answers
Finding the perfect pth power of a number using Java when the number is a fraction
We say p is the perfect pth power of a number x if x can be expressed as another number b^p.
i.e if x=b^p , then p is the perfect pth power of x.
I have few use cases where x can be either a positive integer, negative integer or even a fraction.…

anonymous
- 11
- 4
-1
votes
1 answer
Can I put .pth file in my work directory
G:\code\Python\hello\helloworld.py
G:\code\Python\hello\mymodule\gettime.py
G:\code\Python\hello\mypath.pth
I write gettime.py in mymodule, I'd import gettime in helloworld. I write "G:\\code\\Python\\hello\\mymodule" in mypath.pth.
Can I put…

D.L
- 3
- 1
- 3